Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
stability-attribute
/
stability-attribute-non-staged.rs
blob: 0e16db32ce9d5a1651f022a7b03ca24c236216ba [
file
]
#[
unstable
()]
//~^ ERROR: stability attributes may not be used
//~| ERROR missing 'feature'
//~| ERROR missing 'issue'
#[
stable
()]
//~^ ERROR: stability attributes may not be used
//~| ERROR missing 'feature'
//~| ERROR missing 'since'
fn
main
()
{}