[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-pattern-03.cs
blobc4793bdb9d357e0aa792a316df9a617a9fdf1508
1 // Compiler options: -langversion:experimental
3 class WildcardPattern
5 static int Main ()
7 long? o = 1;
8 bool b = o is *;
9 if (!b)
10 return 1;
12 return 0;