Advertisement
Guest User

Untitled

a guest
Apr 7th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. template Tuple (E...)
  2. {
  3.     alias Tuple = E;
  4. }
  5.  
  6. void main ()
  7. {
  8.     // Would be a string tuple.
  9.     alias SomeTuple = Tuple!();
  10.     int[string] map = [];
  11.  
  12.     auto a = map[SomeTuple[0]];
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement