summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0103-16.cs
blob: da73c33c0a76ef6806236f196462adc24ce6c16f (plain)
1
2
3
4
5
6
7
8
9
10
// CS0103: The name `nameof' does not exist in the current context
// Line: 8

static class C
{
	static void Main ()
	{
		string s = nameof (nameof);
	}
}