Files
linux-packaging-mono/mcs/errors/cs0186-2.cs

11 lines
184 B
C#
Raw Normal View History

// CS0186: Use of null is not valid in this context
// Line: 2
class ClassMain {
public static void Main() {
foreach (System.Type type in null) {
}
}
}