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

fn main() {}