summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0718.rs
blob: 82ab2d4af1ba82f73dcd2c342c09601197c94283 (plain)
1
2
3
4
5
6
7
#![feature(lang_items)]

// Arc is expected to be a struct, so this will error.
#[lang = "arc"] //~ ERROR language item must be applied to a struct
static X: u32 = 42;

fn main() {}