summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0133-3.cs
blob: caae3bde68c50873d87645e84904a93e0bc0f3e4 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0133: The expression being assigned to `Foo' must be constant
// Line: 12

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