rust/tests/run-make/silly-file-names/silly-file-names.rs
Martin Nordholts 8a1be9942d Allow file names to end with '>'
The `rustc_span::FileName` enum already differentiates between real
files and "fake" files such as `<anon>`. We do not need to artificially
forbid real file names from ending in `>`.
2023-10-05 20:17:48 +02:00

5 lines
93 B
Rust

fn main() {
println!(include!("<leading-lt"));
println!(include!("trailing-gt>"));
}