Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
use m::S;
mod m {
pub struct S(u8);
mod n {
use S;
fn f() {
S(10);
//~^ ERROR expected function, tuple struct or tuple variant, found struct `S`
}
fn main() {}