mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
11 lines
282 B
Rust
11 lines
282 B
Rust
// check-pass
|
|
|
|
// This is a stub feature that doesn't control anything, so to make tidy happy,
|
|
// gate-test-test_2018_feature
|
|
|
|
#![feature(test_2018_feature)]
|
|
//~^ WARN the feature `test_2018_feature` is included in the Rust 2018 edition
|
|
#![feature(rust_2018_preview)]
|
|
|
|
fn main() {}
|