Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
comptime
/
comptime_method.rs
blob: a55c950b01680dcc7b55b78b2524f450c98f9715 [
file
] [
edit
]
#![
feature
(
rustc_attrs
)]
struct
Bar
;
#[
rustc_comptime
]
impl
Bar
{
fn
boo
(&
self
)
{}
}
const
_
:
()
=
{
Bar
.
boo
();
};
fn
main
()
{
Bar
.
boo
();
//~^ ERROR: comptime fns can only be called at compile time
}