summaryrefslogtreecommitdiffstats
path: root/tests/ui/lang-items/bad-add-impl.rs
blob: 0c44edbe51a0c869bfe6b0a09b2ff98599d58041 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(no_core)]
#![feature(lang_items)]
#![no_core]

#[lang = "sized"]
trait Sized {}

#[lang = "add"]
trait Add<T> {
    const add: u32 = 1u32;
}

impl Add<u32> for u32 {}

fn main() {
    1u32 + 1u32;
    //~^ ERROR cannot add `u32` to `u32`
}