]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/no-const-fn-in-extern-block.stderr
Rollup merge of #67005 - andrewbanchich:master, r=joshtriplett
[rust.git] / src / test / ui / parser / no-const-fn-in-extern-block.stderr
1 error: extern items cannot be `const`
2   --> $DIR/no-const-fn-in-extern-block.rs:2:5
3    |
4 LL |     const fn foo();
5    |     ^^^^^
6
7 error: extern items cannot be `const`
8   --> $DIR/no-const-fn-in-extern-block.rs:4:5
9    |
10 LL |     const unsafe fn bar();
11    |     ^^^^^
12
13 error: aborting due to 2 previous errors
14