mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
229 B
Rust
13 lines
229 B
Rust
const X: u8 = 1;
|
|
static Y: u8 = 1;
|
|
fn foo() {}
|
|
|
|
impl X {}
|
|
//~^ ERROR expected type, found constant `X`
|
|
impl Y {}
|
|
//~^ ERROR expected type, found static `Y`
|
|
impl foo {}
|
|
//~^ ERROR expected type, found function `foo`
|
|
|
|
fn main() {}
|