2015-04-06 18:39:39 -07:00
|
|
|
//@ compile-flags:--test
|
2023-09-27 17:22:18 -07:00
|
|
|
// https://github.com/rust-lang/rust/issues/18199
|
2015-04-06 18:39:39 -07:00
|
|
|
|
|
|
|
|
#![doc(test(attr(feature(staged_api))))]
|
|
|
|
|
|
|
|
|
|
/// ```
|
2023-03-09 20:54:53 +00:00
|
|
|
/// #![allow(internal_features)]
|
2015-11-16 19:54:28 +03:00
|
|
|
/// #![unstable(feature="test", issue="18199")]
|
2015-04-06 18:39:39 -07:00
|
|
|
/// fn main() {}
|
|
|
|
|
/// ```
|
|
|
|
|
pub fn foo() {}
|