Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
consts
/
const-eval
/
const_prop_errors.rs
blob: f9a36d37943f301c2538f4220a1b8f0c6f311352 [
file
] [
log
] [
blame
]
// check-pass
pub
trait
Foo
{
fn
foo
(
self
)
->
u32
;
}
impl
<
T
>
Foo
for
T
{
fn
foo
(
self
)
->
u32
{
fn
bar
<
T
>()
{
loop
{}
}
bar
::<
T
>
as
u32
}
}
fn
main
()
{}