Created
October 6, 2019 21:35
-
-
Save rustle/c2230e09e354dd20f22ab77954acabc1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
var body: some View { | |
... | |
} | |
} | |
class Bar: Foo { | |
override var body: some View { | |
... | |
} | |
} | |
// Property 'body' with type 'some View' (type of 'Foo.body') cannot override a property with type 'some View' (type of 'Bar.body') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment