summaryrefslogtreecommitdiffstats
path: root/tests/ui/output-type-mismatch.stderr
blob: 4507a4df621e1c2fde27ad96a18cf3ce4791dee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0308]: mismatched types
  --> $DIR/output-type-mismatch.rs:5:31
   |
LL | fn main() { let i: isize; i = f(); }
   |                    -----      ^^^ expected `isize`, found `()`
   |                    |
   |                    expected due to this type

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.