rust/tests/ui/issues/issue-10806.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

39 lines
485 B
Rust

//@ edition: 2015
//@ run-pass
#![allow(unused_imports)]
pub fn foo() -> isize {
3
}
pub fn bar() -> isize {
4
}
pub mod baz {
use {foo, bar};
pub fn quux() -> isize {
foo() + bar()
}
}
pub mod grault {
use {foo};
pub fn garply() -> isize {
foo()
}
}
pub mod waldo {
use {};
pub fn plugh() -> isize {
0
}
}
pub fn main() {
let _x = baz::quux();
let _y = grault::garply();
let _z = waldo::plugh();
}