Remove unnecessary !s for [DoesNotReturn] (dotnet/coreclr#26512)
[mono-project.git] / mcs / errors / cs0611-2.cs
blobd2c3ad92d6bf649076dc77cdedafe5b00ad96e05
1 // CS0611: Array elements cannot be of type `System.TypedReference'
2 // Line: 5
4 public class Sample {
5 System.TypedReference[] references {
6 get {
7 return null;
11 static void Main () {}