Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs8311.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b35229442d9e60b9d433ae5b3dfb93364b17135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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);
    }
}