about summary refs log tree commit diff
path: root/tests/ui/lint/internal/trivial-diagnostics.rs
blob: b93a20a52bbd317bcbe68203f36f6b17e7be5b7d (plain)
1
2
3
4
5
6
7
8
//@ compile-flags: -Zunstable-options

pub fn issue_111280() {
    struct_span_err(msg).emit(); //~ ERROR cannot find value `msg`
    //~^ ERROR cannot find function `struct_span_err`
}

fn main() {}