fork download
  1. import std.stdio;
  2.  
  3. class C{
  4. this(int x){
  5. a = x;
  6. }
  7. const int a;
  8. }
  9.  
  10. void main()
  11. {
  12. auto c = new C(10);
  13. }
Success #stdin #stdout 0.01s 2056KB
stdin
Standard input is empty
stdout
Standard output is empty