1
2
3
4
5
6
7
8
|
//@ reject: nothing was translated
// Exiting 0 with a file containing only the prelude would report success for
// work that was not done. That is the failure in `findings/`, and it is not
// caught by checking the output file is non-empty.
#[cfg(feature = "something")]
pub fn only_under_a_feature() -> i32 {
1
}
|