]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/no-const-fn-in-extern-block.rs
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / parser / no-const-fn-in-extern-block.rs
CommitLineData
5869c6ff 1extern "C" {
e74abb32 2 const fn foo();
74b04a01 3 //~^ ERROR functions in `extern` blocks cannot have qualifiers
e74abb32 4 const unsafe fn bar();
74b04a01 5 //~^ ERROR functions in `extern` blocks cannot have qualifiers
e74abb32
XL
6}
7
8fn main() {}