blob: b4ea89a13729b4b47fd3543925fb34b1b746172b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS1644: Feature `nullable types' cannot be used because it is not part of the C# 1.0 language specification
// Line: 9
// Compiler options: -langversion:ISO-1
struct C
{
void G ()
{
object o = (C?[]) this;
}
}
|