rust/tests/ui/const-generics/defaults/default-annotation.rs

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

18 lines
572 B
Rust
Raw Normal View History

//@ run-pass
#![feature(staged_api)]
#![allow(incomplete_features)]
2021-10-20 17:37:36 -05:00
// FIXME(const_generics_defaults): It seems like we aren't testing the right thing here,
// I would assume that we want the attributes to apply to the const parameter defaults
// themselves.
#![stable(feature = "const_default_test", since = "3.3.3")]
#[unstable(feature = "const_default_stable", issue = "none")]
pub struct ConstDefaultUnstable<const N: usize = 3>;
#[stable(feature = "const_default_unstable", since = "3.3.3")]
pub struct ConstDefaultStable<const N: usize = {
2021-03-29 03:32:27 -05:00
3
}>;
fn main() {}