Files
rust/tests/ui/output-type-mismatch.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
85 B
Rust
Raw Normal View History

2010-06-23 21:03:09 -07:00
// error-pattern: mismatched types
2011-07-27 14:19:39 +02:00
fn f() { }
2010-06-23 21:03:09 -07:00
fn main() { let i: isize; i = f(); }