diff options
Diffstat (limited to 'tests/ui/traits/no-fallback-multiple-impls.stderr')
-rw-r--r-- | tests/ui/traits/no-fallback-multiple-impls.stderr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/traits/no-fallback-multiple-impls.stderr b/tests/ui/traits/no-fallback-multiple-impls.stderr new file mode 100644 index 000000000..61c9e5aaa --- /dev/null +++ b/tests/ui/traits/no-fallback-multiple-impls.stderr @@ -0,0 +1,9 @@ +error[E0425]: cannot find function `missing` in this scope + --> $DIR/no-fallback-multiple-impls.rs:12:5 + | +LL | missing(); + | ^^^^^^^ not found in this scope + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0425`. |