Sign in
rust
/
rust
/
5a8cd237d4fad99d862aed51fab8cb5345c97013
/
.
/
tests
/
ui
/
comptime
/
comptime_method.rs
blob: a55c950b01680dcc7b55b78b2524f450c98f9715 [
file
]
#![
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
}