blob: e536e1164fcebdb9a21ec756b87ff96933d37571 (
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() {}
|