Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.11 KB | None | 0 0
  1. class A
  2. {
  3.      public this() {}
  4.      protected int a;
  5. }
  6.  
  7. class B : A
  8. {
  9.      public this() { a = 2; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement