about summary refs log tree commit diff
path: root/tests/ui/pattern/fn-in-pat.stderr
blob: 90b1dff32ce568693e09f966ffd6dc1cd4ebeb0f (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0164]: expected tuple struct or tuple variant, found associated function `A::new`
  --> $DIR/fn-in-pat.rs:11:9
   |
LL |         A::new() => (),
   |         ^^^^^^^^ `fn` calls are not allowed in patterns
   |
   = help: for more information, visit https://doc.rust-lang.org/book/ch19-00-patterns.html

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0164`.