8a1be9942d
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 `>`.
5 lines
93 B
Rust
5 lines
93 B
Rust
fn main() {
|
|
println!(include!("<leading-lt"));
|
|
println!(include!("trailing-gt>"));
|
|
}
|