summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-48364.rs
blob: 14ee75e7c9cb6029dba7e5c0398d2b7f9f2422f1 (plain)
1
2
3
4
5
6
fn foo() -> bool {
    b"".starts_with(stringify!(foo))
    //~^ ERROR mismatched types
}

fn main() {}