Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs8138.cs
1 // CS8138: Do not use `System.Runtime.CompilerServices.TupleElementNamesAttribute' directly. Use the tuple syntax instead
2 // Line: 7
3
4 using System;
5 using System.Runtime.CompilerServices;
6
7 [TupleElementNames (new[] { "a", "b" })]
8 public class C
9 {
10 }