summary refs log tree commit diff
path: root/src/test/compile-fail/issue-1362.rs
blob: c11b98cfe5263ad29d1ce7944bc41fd1425572a3 (plain)
1
2
3
4
5
6
7
8
// Regression test for issue #1362 - without that fix the span will be bogus
// no-reformat
fn main() {
  let x: uint = 20i; //~ 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.