Advertisement
Guest User

Untitled

a guest
Oct 13th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.20 KB | None | 0 0
  1. struct Foo
  2. {
  3.   int x;
  4. }
  5.  
  6. Foo[] foos;
  7.  
  8. int[int] baz;
  9.  
  10. void main()
  11. {
  12.     foreach (foo; foos)
  13.     {
  14.         baz[foo.baz] = 5;
  15.     }
  16. }
  17.  
  18.  
  19. test.d(14): Error: function expected before (), not baz of type int[int]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement