blob: 64016e32eeeb113c0a638d32f175b7310a753544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ compile-flags:--test
// https://github.com/rust-lang/rust/issues/18199
#![doc(test(attr(feature(staged_api))))]
/// ```
/// #![allow(internal_features)]
/// #![unstable(feature="test", issue="18199")]
/// fn main() {}
/// ```
pub fn foo() {}
|