Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs8125.cs
1 // CS8125: The tuple element name `Item22' can only be used at position 22
2 // Line: 6
3
4 class C
5 {
6         static void Test ((int Item22, int b) arg)
7         {
8         }
9 }