Advertisement
Guest User

Untitled

a guest
Jan 12th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. class Animal
  2. {
  3. use Cat, Dog {
  4. Dog::wantWalkies as protected doggyWalk;
  5.  
  6. // this next line does not work
  7. // Dog::wantWalkies as protected insteadof Cat;
  8.  
  9. Dog::wantWalkies instead of Cat;
  10. Dog::wantWalkies as protected;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement