granite-rust/src/test/ui/codemap_tests/tab.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

21 lines
580 B
Text

error[E0425]: cannot find value `bar` in this scope
--> $DIR/tab.rs:4:2
|
LL | bar;
| ^^^ not found in this scope
error[E0308]: mismatched types
--> $DIR/tab.rs:8:2
|
LL | fn foo() {
| - help: try adding a return type: `-> &'static str`
LL | "bar boo"
| ^^^^^^^^^^^^^^^^^^^^ expected (), found reference
|
= note: expected type `()`
found type `&'static str`
error: aborting due to 2 previous errors
Some errors occurred: E0308, E0425.
For more information about an error, try `rustc --explain E0308`.