summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-18119.rs
blob: e48dc51a2c6448e5634edc355f662f044cd67f84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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() {}