rust/tests/ui/issues/issue-15774.rs
Lukas Wirth 49969468b5 Add missing 2015 edition directives
These tests specifically test 2015 edition behavior, so ensure that they can only be run with this edition
2025-06-03 11:45:58 +02:00

25 lines
371 B
Rust

//@ edition: 2015
//@ run-pass
#![deny(warnings)]
#![allow(unused_imports)]
pub enum Foo { A }
mod bar {
pub fn normal(x: ::Foo) {
use Foo::A;
match x {
A => {}
}
}
pub fn wrong(x: ::Foo) {
match x {
::Foo::A => {}
}
}
}
pub fn main() {
bar::normal(Foo::A);
bar::wrong(Foo::A);
}