2020-02-15 00:50:26 +00:00
|
|
|
// Semantically, we do not allow e.g., `static X: u8 = 0;` as an associated item.
|
|
|
|
|
|
|
|
#![feature(specialization)]
|
2020-06-16 08:06:35 +00:00
|
|
|
//~^ WARN the feature `specialization` is incomplete
|
2020-02-15 00:50:26 +00:00
|
|
|
|
|
|
|
fn main() {}
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
impl S {
|
|
|
|
static IA: u8 = 0;
|
|
|
|
//~^ ERROR associated `static` items are not allowed
|
|
|
|
static IB: u8;
|
|
|
|
//~^ ERROR associated `static` items are not allowed
|
2020-02-22 07:16:39 +00:00
|
|
|
//~| ERROR associated constant in `impl` without body
|
2020-02-15 00:50:26 +00:00
|
|
|
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 00:50:26 +00:00
|
|
|
pub(crate) default static ID: u8;
|
|
|
|
//~^ ERROR associated `static` items are not allowed
|
2020-02-22 07:16:39 +00:00
|
|
|
//~| ERROR associated constant in `impl` without body
|
2020-02-23 09:24:30 +00:00
|
|
|
//~| ERROR a static item cannot be `default`
|
2020-02-15 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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 00:50:26 +00:00
|
|
|
pub(crate) default static TD: u8;
|
|
|
|
//~^ ERROR associated `static` items are not allowed
|
|
|
|
//~| ERROR unnecessary visibility qualifier
|
2020-02-23 09:24:30 +00:00
|
|
|
//~| ERROR a static item cannot be `default`
|
2020-02-15 00:50:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2020-02-22 07:16:39 +00:00
|
|
|
//~| ERROR associated constant in `impl` without body
|
2020-02-15 00:50:26 +00:00
|
|
|
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 00:50:26 +00:00
|
|
|
pub default static TD: u8;
|
|
|
|
//~^ ERROR associated `static` items are not allowed
|
2020-02-22 07:16:39 +00:00
|
|
|
//~| ERROR associated constant in `impl` without body
|
2020-02-15 00:50:26 +00:00
|
|
|
//~| ERROR unnecessary visibility qualifier
|
2020-02-23 09:24:30 +00:00
|
|
|
//~| ERROR a static item cannot be `default`
|
2020-02-15 00:50:26 +00:00
|
|
|
}
|