• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --dynamic-loading TestLib
2 
3 template<typename T>
4 T foo(T x);
5 
6 template<>
7 int foo(int x);
8 
9 template<>
10 float foo(float x);
11