Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Menu {
- class Button {
- }
- }
- class FloatingMenu: Menu {
- override class Button: Menu.Button { //override keyword makes no difference
- // defining is fine, but trying to use FloatingMenu.Button is ambiguous
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement