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

cs0109-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f985f7f057877e559e344d3e3094c88406f90bd (plain)
1
2
3
4
5
6
7
8
9
10
// cs0109.cs: The member 'Outer.Inner' does not hide an inherited member. The new keyword is not required.
// Line: 7
// Compiler options: -warnaserror -warn:4

class Outer
{
    public new class Inner
    {
    }
}