mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
9 lines
309 B
Rust
9 lines
309 B
Rust
// Regression test for issue #1362 - without that fix the span will be bogus
|
|
// no-reformat
|
|
fn main() {
|
|
let x: u32 = 20i32; //~ ERROR mismatched types
|
|
}
|
|
// NOTE: Do not add any extra lines as the line number the error is
|
|
// on is significant; an error later in the source file might not
|
|
// trigger the bug.
|