I'm unsure which repo this belong in? This collapses properly: ```cs public class Demo1 { public int Foo() { return #if DEBUG 10; #else 20; #endif } } ``` This does not: ```cs public class Demo2 { public int Foo() => #if DEBUG 10; #else 20; #endif } ```