Guest User

Untitled

a guest
May 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. template<int I>
  2. int foo()
  3. {
  4. return (I);
  5. }
  6.  
  7. foo<5>();
  8.  
  9. template<int I = x>
  10. int bar(const int x)
  11. {
  12. return (I);
  13. }
Add Comment
Please, Sign In to add comment