2024-06-30 17:08:45 +00:00
|
|
|
//@ compile-flags: -Znext-solver
|
2023-04-16 11:12:37 +00:00
|
|
|
//@ known-bug: #110395
|
2021-07-03 12:07:06 +02:00
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
2024-12-21 20:25:43 +00:00
|
|
|
#![feature(staged_api, const_trait_impl, const_default)]
|
2021-07-03 12:07:06 +02:00
|
|
|
#![stable(feature = "foo", since = "1.0.0")]
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "potato", since = "1.27.0")]
|
|
|
|
|
pub struct Data {
|
2022-02-13 05:54:00 -05:00
|
|
|
_data: u128,
|
2021-07-03 12:07:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "potato", since = "1.27.0")]
|
2022-02-13 05:54:00 -05:00
|
|
|
#[rustc_const_unstable(feature = "data_foo", issue = "none")]
|
2024-12-21 20:25:43 +00:00
|
|
|
impl const std::fmt::Debug for Data {
|
|
|
|
|
fn fmt(&self, _: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
|
|
|
|
|
Ok(())
|
2021-07-03 12:07:06 +02:00
|
|
|
}
|
|
|
|
|
}
|