rust/tests/ui/expr/scope.rs
Lukas Wirth 87054fc811 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-02 11:00:46 +02:00

8 lines
113 B
Rust

//@ edition:2015
//@ run-pass
// Regression test for issue #762
pub fn f() { }
pub fn main() { return ::f(); }