]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/generic-fn-twice.rs
Reformat source tree (minus a couple tests that are still grumpy).
[rust.git] / src / test / run-pass / generic-fn-twice.rs
1
2
3
4 // -*- rust -*-
5 mod foomod {
6     fn foo[T]() { }
7 }
8
9 fn main() { foomod::foo[int](); foomod::foo[int](); }