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