blob: 2202d722c497e459e3dc24cca7ef5889c8fb8197 (
plain)
1
2
3
4
5
6
7
8
9
|
#![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");
}
|