[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs1525-3.cs
1 // CS1523: Unexpected symbol `~'
2 // Line: 9
3
4 class D {
5         static int a = 1;
6         static int b = 2;
7         static int Main ()
8         {
9                 return (a << 1) ~ (b);  
10         }
11 }