summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/mock-std/library/std/src/lib.rs
blob: 146d4c42c23a34cd2fd96e7d8f4aa5781dbd1e9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(staged_api)]
#![stable(since = "1.0.0", feature = "dummy")]

#[stable(since = "1.0.0", feature = "dummy")]
pub use std::*;

#[stable(since = "1.0.0", feature = "dummy")]
pub fn custom_api() {}

#[cfg(feature = "feature1")]
#[stable(since = "1.0.0", feature = "dummy")]
pub fn conditional_function() {}