Merge pull request #5636 from BrzVlad/fix-xmm-scan
[mono.git] / mcs / errors / cs1525-37.cs
1 // CS1525: Unexpected symbol `(', expecting `)', `,', or `='
2 // Line: 8
3
4 class A
5 {
6         public static void Main ()
7         {
8                 using (var undo ())
9                 {
10                 }
11         }
12 }