11 lines
171 B
C#
11 lines
171 B
C#
|
// CS8183: Cannot infer the type of implicitly-typed discard
|
||
|
// Line: 9
|
||
|
// Compiler options: -langversion:7.2
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
_ = default;
|
||
|
}
|
||
|
}
|