mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00

These tests specifically test 2015 edition behavior, so ensure that they can only be run with this edition
8 lines
113 B
Rust
8 lines
113 B
Rust
//@ edition:2015
|
|
//@ run-pass
|
|
// Regression test for issue #762
|
|
|
|
|
|
pub fn f() { }
|
|
pub fn main() { return ::f(); }
|