diff --git a/src/Chapter04/Listing04.28.OutOfScope.cs b/src/Chapter04/Listing04.28.OutOfScope.cs index f073f0a85..cae91131c 100644 --- a/src/Chapter04/Listing04.28.OutOfScope.cs +++ b/src/Chapter04/Listing04.28.OutOfScope.cs @@ -27,14 +27,12 @@ public static void Main(string[] args) { // ... } - #endregion INCLUDE - #if COMPILE_ERRR - #region INCLUDE + #if COMPILE_ERRR //EXCLUDE #region HIGHLIGHT // ERROR: message is not in scope: Console.WriteLine(message); #endregion HIGHLIGHT + #endif // COMPILE_ERRR //EXCLUDE #endregion INCLUDE - #endif // COMPILE_ERRR } }