Skip to content

Instantly share code, notes, and snippets.

@lukeredpath
Created April 26, 2021 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukeredpath/d4c7045590d10e5438a3fe23305f88a7 to your computer and use it in GitHub Desktop.
Save lukeredpath/d4c7045590d10e5438a3fe23305f88a7 to your computer and use it in GitHub Desktop.
// 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