summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0303.rs
blob: 0530d43b653f5153ab670a38a03561da73154024 (plain)
1
2
3
4
5
6
7
8
fn main() {
    match Some("hi".to_string()) {
        ref op_string_ref @ Some(s) => {},
        //~^ ERROR pattern bindings are not allowed after an `@` [E0303]
        //~| ERROR E0009
        None => {},
    }
}