Sign in
rust
/
rust-lang
/
rust
/
refs/heads/main
/
.
/
tests
/
ui
/
comptime
/
const_comptime.rs
blob: 827e4dfcf545be9ddbc2fa5c0c8077aca4760407 [
file
] [
edit
]
#![
feature
(
rustc_attrs
)]
#[
rustc_comptime
]
const
fn
foo
()
{}
//~^ ERROR a function cannot be both `comptime` and `const`
fn
main
()
{}