Advertisement
Guest User

Untitled

a guest
Mar 16th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.15 KB | None | 0 0
  1. import std.stdio;
  2.  
  3. struct S
  4. {
  5. }
  6.  
  7. void foo(S* s) { writeln("2"); }
  8.  
  9. void main()
  10. {
  11.     S a;
  12.     a.foo();
  13.     S *b = new S;
  14.     b.foo();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement