diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2015-02-12 10:29:52 -0500 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2015-02-18 10:25:28 -0500 |
| commit | 872ce479550a3d805babb0ca409dfc3cf6f52309 (patch) | |
| tree | a1cf314833d1c99b297d59c30a2f1289f111e57e /src/test/run-pass/trait-bounds-basic.rs | |
| parent | ef42c2befd9451cd913de60539487a483ae9deac (diff) | |
| download | rust-872ce479550a3d805babb0ca409dfc3cf6f52309.tar.gz rust-872ce479550a3d805babb0ca409dfc3cf6f52309.zip | |
Fallout: tests. As tests frequently elide things, lots of changes
here. Some of this may have been poorly rebased, though I tried to be careful and preserve the spirit of the test.
Diffstat (limited to 'src/test/run-pass/trait-bounds-basic.rs')
| -rw-r--r-- | src/test/run-pass/trait-bounds-basic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/trait-bounds-basic.rs b/src/test/run-pass/trait-bounds-basic.rs index d03496403ad..ed25bf8b02e 100644 --- a/src/test/run-pass/trait-bounds-basic.rs +++ b/src/test/run-pass/trait-bounds-basic.rs @@ -9,7 +9,7 @@ // except according to those terms. -trait Foo { +trait Foo : ::std::marker::MarkerTrait { } fn b(_x: Box<Foo+Send>) { |
