rust/tests/ui/parser/keyword-ref-as-identifier.rs

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

4 lines
77 B
Rust
Raw Normal View History

fn main() {
2016-04-24 18:35:50 +00:00
let ref = "foo"; //~ error: expected identifier, found `=`
}