about summary refs log tree commit diff
path: root/tests/ui/panics/panic.rs
blob: 068f187524d5be52298d9b3f0ef14299f16a12cd (plain)
1
2
3
4
5
6
7
//@ run-fail
//@ error-pattern:1 == 2
//@ needs-subprocess

fn main() {
    assert!(1 == 2);
}