Sign in
rust
/
rust
/
08650fbb506c44fbc95d91abfb7cd95a56bbff30
/
.
/
src
/
test
/
ui
/
lexical-scopes.rs
blob: 46cfdf1efa8f059674f1fd013bc5310eac94b725 [
file
]
struct
T
{
i
:
i32
}
fn
f
<
T
>()
{
let
t
=
T
{
i
:
0
};
//~ ERROR expected struct, variant or union type, found type parameter `T`
}
mod
Foo
{
pub
fn
f
()
{}
}
fn
g
<
Foo
>()
{
Foo
::
f
();
//~ ERROR no function or associated item named `f`
}
fn
main
()
{}