mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
28 lines
1.1 KiB
Rust
28 lines
1.1 KiB
Rust
|
// 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
|
||
|
}
|