Skip to content

Commit 9fe987f

Browse files
fix: Fix exclude (#537)
It wouldn't parse because it was missing the `//` before the EXCLUDE
1 parent cd813ff commit 9fe987f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Chapter13/Listing13.21.StaticAnonymousFunctions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static void Main()
3131
// Error CS8820: A static anonymous function
3232
// cannot contain a reference to comparisonCount.
3333
comparisonCount++;
34-
#endif // COMPILEERROR EXCLUDE
34+
#endif // COMPILEERROR // EXCLUDE
3535
return first < second;
3636
}
3737
);

0 commit comments

Comments
 (0)