rust/tests/ui/issues/issue-48364.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
104 B
Rust
Raw Normal View History

fn foo() -> bool {
b"".starts_with(stringify!(foo))
//~^ ERROR mismatched types
}
fn main() {}