Sign in
fuchsia
/
third_party
/
rust
/
75b2ae5ec50a3fb3cadd297b7d524935afa9faad
/
.
/
src
/
test
/
ui
/
const-generics
/
issues
/
issue-70125-2.rs
blob: cfd5e784ec4045ba1c51ff0bd61d730a25abf0aa [
file
] [
log
] [
blame
]
// run-pass
fn
main
()
{
<()>::
foo
();
}
trait
Foo
<
const
X
:
usize
>
{
fn
foo
()
->
usize
{
X
}
}
impl
Foo
<
3
>
for
()
{}