diff options
Diffstat (limited to '')
-rw-r--r-- | tests/ui/self/arbitrary-self-from-method-substs.feature.stderr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ui/self/arbitrary-self-from-method-substs.feature.stderr b/tests/ui/self/arbitrary-self-from-method-substs.feature.stderr new file mode 100644 index 000000000..7378d53c3 --- /dev/null +++ b/tests/ui/self/arbitrary-self-from-method-substs.feature.stderr @@ -0,0 +1,9 @@ +error[E0308]: mismatched types + --> $DIR/arbitrary-self-from-method-substs.rs:16:5 + | +LL | foo.get::<&Foo>(); + | ^^^ expected `&Foo`, found `Foo` + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0308`. |