rust/tests/ui/consts/rustc-impl-const-stability.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
456 B
Rust
Raw Permalink Normal View History

2024-06-30 12:08:45 -05:00
//@ compile-flags: -Znext-solver
2023-04-16 06:12:37 -05:00
//@ known-bug: #110395
#![crate_type = "lib"]
2024-10-30 13:03:44 -05:00
#![feature(staged_api, const_trait_impl)]
#![stable(feature = "foo", since = "1.0.0")]
#[stable(feature = "potato", since = "1.27.0")]
pub struct Data {
_data: u128,
}
#[stable(feature = "potato", since = "1.27.0")]
#[rustc_const_unstable(feature = "data_foo", issue = "none")]
impl const Default for Data {
fn default() -> Data {
Data { _data: 42 }
}
}