diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-22 11:23:21 -0700 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-22 12:57:28 -0700 |
| commit | 3eda11a4f79103a7f6d73c38e5e4f0880e26cc3c (patch) | |
| tree | 0a0175a52524bf5812b0185adc52743fa706bbc7 /src/test/run-pass/class-separate-impl.rs | |
| parent | fbe22afdbe4d1b612ba722551ba1c099e7f3e0b0 (diff) | |
| download | rust-3eda11a4f79103a7f6d73c38e5e4f0880e26cc3c.tar.gz rust-3eda11a4f79103a7f6d73c38e5e4f0880e26cc3c.zip | |
test: Remove `pure` from the test suite
Diffstat (limited to 'src/test/run-pass/class-separate-impl.rs')
| -rw-r--r-- | src/test/run-pass/class-separate-impl.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/class-separate-impl.rs b/src/test/run-pass/class-separate-impl.rs index bb07597a188..168f2d872e7 100644 --- a/src/test/run-pass/class-separate-impl.rs +++ b/src/test/run-pass/class-separate-impl.rs @@ -51,7 +51,7 @@ fn cat(in_x : uint, in_y : int, in_name: ~str) -> cat { } impl ToStr for cat { - pure fn to_str(&self) -> ~str { + fn to_str(&self) -> ~str { // FIXME #5384: this unsafe block is to work around purity unsafe { self.name.clone() |
