Created
April 26, 2021 11:43
-
-
Save lukeredpath/d4c7045590d10e5438a3fe23305f88a7 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
// Compiles in Xcode 12.5, but not 12.4 | |
var foo: Foo { | |
#if DEBUG | |
Foo(debug: true) | |
#else | |
Foo() | |
#end | |
} | |
// Compiles in both | |
var foo: Foo { | |
#if DEBUG | |
return Foo(debug: true) | |
#else | |
return Foo() | |
#end | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment