Files
rust/src/test/ui/extern/extern-prelude-std.rs
Tomasz Miąsko 427952e808 Make error and warning annotations mandatory in UI tests
This change makes error and warning annotations mandatory in UI tests.
The only exception are tests that use error patterns to match compiler
output and don't have any annotations.
2019-11-10 21:01:02 +01:00

13 lines
146 B
Rust

// run-pass
mod foo {
pub fn test() {
let x = std::cmp::min(2, 3);
assert_eq!(x, 2);
}
}
fn main() {
foo::test();
}