mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 17:06:59 +00:00
13 lines
199 B
Rust
13 lines
199 B
Rust
#![feature(frontmatter)]
|
|
|
|
//@ check-pass
|
|
|
|
include!("auxiliary/lib.rs");
|
|
|
|
// auxiliary/lib.rs contains a frontmatter. Ensure that we can use them in an
|
|
// `include!` macro.
|
|
|
|
fn main() {
|
|
foo(1);
|
|
}
|