Guest User

Untitled

a guest
May 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. template< typename T >
  2. struct bar
  3. {
  4.     template< typename ArgType >
  5.     void foo( const ArgType )
  6.     {
  7.         &bar< T >::foo< ArgType >;
  8.     }
  9. };
  10.  
  11. int main()
  12. {
  13. }
Add Comment
Please, Sign In to add comment