about summary refs log tree commit diff
path: root/tests/ui/frontmatter/include-in-item-ctxt.rs
blob: c8455bc49abd2e73b636b3957ea616ee470bca7c (plain)
1
2
3
4
5
6
7
8
9
10
// Ensure that in item ctxts we can `include` files that contain frontmatter.
//@ check-pass

#![feature(frontmatter)]

include!("auxiliary/lib.rs");

fn main() {
    foo(1);
}