summary refs log tree commit diff
path: root/src/test/compile-fail/static-assert2.rs
blob: de1c6427e14b2bf429a7c0d37fc29c7acbb3f7a2 (plain)
1
2
3
4
#[static_assert]
static e: bool = 1 == 2; //~ ERROR static assertion failed

fn main() {}