summary refs log tree commit diff
path: root/src/test/run-pass/test-runner-hides-main.rs
blob: 997664aa9c0a25cc480ad025c23e98e8f59a2ee1 (plain)
1
2
3
4
5
6
7
8
// compile-flags:--test
// xfail-fast

use std;

// Building as a test runner means that a synthetic main will be run,
// not ours
fn main() { fail; }