Guest User

Untitled

a guest
Dec 11th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. template <typename T>
  2. void G(T) { }
  3.  
  4. template <typename T, typename U>
  5. void F(U x)
  6. {
  7. G<T>(x);
  8. }
  9.  
  10. int main()
  11. {
  12. F<void*>(nullptr);
  13. }
Add Comment
Please, Sign In to add comment