blob: badf1396b73e8a2804e358cb0bab976bcac832a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// This test checks that manually setting the output file as a bare file with no file extension
// still results in successful compilation.
//@ ignore-cross-compile
use run_make_support::{run, rustc};
fn main() {
rustc().output("foo").input("foo.rs").run();
run("foo");
}
|