]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/match-fn-call.stderr
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / match / match-fn-call.stderr
1 error[E0164]: expected tuple struct or tuple variant, found associated function `Path::new`
2   --> $DIR/match-fn-call.rs:6:9
3    |
4 LL |         Path::new("foo") => println!("foo"),
5    |         ^^^^^^^^^^^^^^^^ `fn` calls are not allowed in patterns
6    |
7    = help: for more information, visit https://doc.rust-lang.org/book/ch18-00-patterns.html
8
9 error[E0164]: expected tuple struct or tuple variant, found associated function `Path::new`
10   --> $DIR/match-fn-call.rs:8:9
11    |
12 LL |         Path::new("bar") => println!("bar"),
13    |         ^^^^^^^^^^^^^^^^ `fn` calls are not allowed in patterns
14    |
15    = help: for more information, visit https://doc.rust-lang.org/book/ch18-00-patterns.html
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0164`.