summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/type_wf.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/chalkify/type_wf.stderr')
-rw-r--r--tests/ui/chalkify/type_wf.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/ui/chalkify/type_wf.stderr b/tests/ui/chalkify/type_wf.stderr
deleted file mode 100644
index 6e8daf635..000000000
--- a/tests/ui/chalkify/type_wf.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0277]: the trait bound `{float}: Foo` is not satisfied
- --> $DIR/type_wf.rs:19:12
- |
-LL | x: 5.0,
- | ^^^ the trait `Foo` is not implemented for `{float}`
- |
- = help: the trait `Foo` is implemented for `i32`
-note: required by a bound in `S`
- --> $DIR/type_wf.rs:6:13
- |
-LL | struct S<T: Foo> {
- | ^^^ required by this bound in `S`
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0277`.