summaryrefslogtreecommitdiffstats
path: root/src/test/ui/error-codes/E0404.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0404.stderr')
-rw-r--r--src/test/ui/error-codes/E0404.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/error-codes/E0404.stderr b/src/test/ui/error-codes/E0404.stderr
deleted file mode 100644
index 4ccb6c572..000000000
--- a/src/test/ui/error-codes/E0404.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-error[E0404]: expected trait, found struct `Foo`
- --> $DIR/E0404.rs:4:6
- |
-LL | impl Foo for Bar {}
- | ^^^ not a trait
-
-error[E0404]: expected trait, found struct `Foo`
- --> $DIR/E0404.rs:8:11
- |
-LL | fn baz<T: Foo>(_: T) {}
- | ^^^ not a trait
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0404`.