2019-03-01 23:47:06 -06:00
|
|
|
struct A;
|
|
|
|
|
2019-03-01 18:28:04 -06:00
|
|
|
impl A {
|
2019-03-01 23:47:06 -06:00
|
|
|
fn b(self> {}
|
2019-03-01 18:28:04 -06:00
|
|
|
//~^ ERROR expected one of `)`, `,`, or `:`, found `>`
|
|
|
|
}
|
|
|
|
|
2019-03-02 00:14:22 -06:00
|
|
|
// verify that mismatched delimiters get emitted
|
|
|
|
fn foo(] {}
|
|
|
|
//~^ ERROR incorrect close delimiter
|
|
|
|
|
2019-03-01 18:28:04 -06:00
|
|
|
fn main() {}
|