about summary refs log tree commit diff
path: root/src/test/compile-fail/static-assert.rs
blob: 4f7f7dd7408af1372bdafe2878d7868831fece2f (plain)
1
2
3
4
5
6
7
#[allow(dead_code)];

#[static_assert]
static A: bool = false; //~ ERROR static assertion failed

fn main() {
}