fork download
  1. import std.stdio;
  2.  
  3. struct Foo
  4. {
  5. public void opAssign(int x) { this.y = x; }
  6. public int y;
  7. }
  8.  
  9. void main()
  10. {
  11. Foo bar;
  12. bar = 5;
  13. writeln(bar.y);
  14. }
  15.  
Success #stdin #stdout 0.01s 2120KB
stdin
Standard input is empty
stdout
5