Files
rust/tests/ui/frontmatter/include-in-item-ctxt.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
177 B
Rust
Raw Normal View History

2025-09-08 19:25:22 +02:00
// Ensure that in item ctxts we can `include` files that contain frontmatter.
//@ check-pass
#![feature(frontmatter)]
include!("auxiliary/lib.rs");
fn main() {
foo(1);
}