mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14d56e8338
Most of these changes either add revision names that were apparently missing, or explicitly mark a revision name as currently unused.
18 lines
445 B
Rust
18 lines
445 B
Rust
//@ ignore-compare-mode-polonius
|
|
|
|
//@ revisions: a
|
|
//@ unused-revision-names: b
|
|
//@ should-fail
|
|
|
|
// This is a "meta-test" of the compilertest framework itself. In
|
|
// particular, it includes the right error message, but the message
|
|
// targets the wrong revision, so we expect the execution to fail.
|
|
// See also `meta-expected-error-correct-rev.rs`.
|
|
|
|
#[cfg(a)]
|
|
fn foo() {
|
|
let x: u32 = 22_usize; //[b]~ ERROR mismatched types
|
|
}
|
|
|
|
fn main() { }
|