e46a49ecf1
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
12 lines
244 B
C#
12 lines
244 B
C#
// CS8311: Cannot use a default literal as an argument to a dynamically dispatched operation
|
|
// Line: 10
|
|
// Compiler options: -langversion:latest
|
|
|
|
class C
|
|
{
|
|
static void Main ()
|
|
{
|
|
dynamic d = null;
|
|
d.M2 (default);
|
|
}
|
|
} |