mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-08 13:18:32 +00:00
10 lines
307 B
Rust
10 lines
307 B
Rust
![]() |
#![feature(ascii_char)] // random lib feature
|
||
|
#![feature(box_patterns)] // random lang feature
|
||
|
|
||
|
// picked arbitrary unstable features, just need a random lib and lang feature, ideally ones that
|
||
|
// won't be stabilized any time soon so we don't have to update this test
|
||
|
|
||
|
fn main() {
|
||
|
println!("foobar");
|
||
|
}
|