aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/generic-fn-twice.rs
blob: 0c6257f887411fb4f3cbedc33ed756f595c791a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// -*- rust -*-

mod foomod {
  fn foo[T]() {}
}

fn main() {
  foomod.foo[int]();
  foomod.foo[int]();
}