rust/src/test/ui/parser/assoc-static-syntactic-fail.rs

28 lines
1.1 KiB
Rust
Raw Normal View History

// Syntactically, we do allow e.g., `static X: u8 = 0;` as an associated item.
fn main() {}
#[cfg(FALSE)]
impl S {
static IA: u8 = 0; //~ ERROR associated `static` items are not allowed
static IB: u8; //~ ERROR associated `static` items are not allowed
default static IC: u8 = 0; //~ ERROR associated `static` items are not allowed
pub(crate) default static ID: u8; //~ ERROR associated `static` items are not allowed
}
#[cfg(FALSE)]
trait T {
static TA: u8 = 0; //~ ERROR associated `static` items are not allowed
static TB: u8; //~ ERROR associated `static` items are not allowed
default static TC: u8 = 0; //~ ERROR associated `static` items are not allowed
pub(crate) default static TD: u8; //~ ERROR associated `static` items are not allowed
}
#[cfg(FALSE)]
impl T for S {
static TA: u8 = 0; //~ ERROR associated `static` items are not allowed
static TB: u8; //~ ERROR associated `static` items are not allowed
default static TC: u8 = 0; //~ ERROR associated `static` items are not allowed
pub default static TD: u8; //~ ERROR associated `static` items are not allowed
}