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

cs0133-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfd55bc0c134e4e27e15cac3f855302839885091 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0133.cs: The expression being assigned to 'Foo' must be constant
// Line: 12

class T
{
    public void FooBar ()
    {
        const string Foo = Foo;
    }
}