2020-02-15 21:21:00 +00:00
|
|
|
// 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
|
2020-02-23 09:24:30 +00:00
|
|
|
//~^ ERROR a static item cannot be `default`
|
2020-02-15 21:21:00 +00:00
|
|
|
pub(crate) default static ID: u8; //~ ERROR associated `static` items are not allowed
|
2020-02-23 09:24:30 +00:00
|
|
|
//~^ ERROR a static item cannot be `default`
|
2020-02-15 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
2020-02-23 09:24:30 +00:00
|
|
|
//~^ ERROR a static item cannot be `default`
|
2020-02-15 21:21:00 +00:00
|
|
|
pub(crate) default static TD: u8; //~ ERROR associated `static` items are not allowed
|
2020-02-23 09:24:30 +00:00
|
|
|
//~^ ERROR a static item cannot be `default`
|
2020-02-15 21:21:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[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
|
2020-02-23 09:24:30 +00:00
|
|
|
//~^ ERROR a static item cannot be `default`
|
2020-02-15 21:21:00 +00:00
|
|
|
pub default static TD: u8; //~ ERROR associated `static` items are not allowed
|
2020-02-23 09:24:30 +00:00
|
|
|
//~^ ERROR a static item cannot be `default`
|
2020-02-15 21:21:00 +00:00
|
|
|
}
|