Guest User

Untitled

a guest
Jun 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. void foo(T)() { pragma(msg, T.stringof); }
  2. void main() {
  3. foo!(int[]);
  4. foo!(const int[]);
  5. foo!(const(int)[]);
  6. }
Add Comment
Please, Sign In to add comment