Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
generics
/
generic-fn-twice.rs
blob: 26d6f750c80f80303a36ab888d7e615d23038241 [
file
] [
log
] [
blame
]
//@ run-pass
mod
foomod
{
pub
fn
foo
<
T
>()
{
}
}
pub
fn
main
()
{
foomod
::
foo
::<
isize
>();
foomod
::
foo
::<
isize
>();
}