Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
tests
/
ui
/
traits
/
const-traits
/
const-impl-inherent.rs
blob: 493a9dc619a1e68ea33f20a16da14451de5047e0 [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_impl
)]
//@ check-pass
struct
Foo
;
const
impl
Foo
{
fn
bar
()
{}
}
const
_
:
()
=
Foo
::
bar
();
fn
main
()
{
Foo
::
bar
();
}