You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Warning: Subclass of a static class cannot be dynamic, add `@dynamic(false)` (1:0)
> 1 | public class Dog: Animal {
| ^
2 | override public func makeSound() { ... }
3 | }
The text was updated successfully, but these errors were encountered:
Certain classes are 'static' for design purposes. This means that with this class:
The following should warn:
The text was updated successfully, but these errors were encountered: