summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1970.cs
blob: bc8c7f28876874f7271a19caf43d8ff9257182cd (plain)
1
2
3
4
5
6
7
8
9
10
// CS1970: Do not use `System.Runtime.CompilerServices.DynamicAttribute' directly. Use `dynamic' keyword instead
// Line: 4

[System.Runtime.CompilerServices.Dynamic]
static class C
{
	public static void Test (int i)
	{
	}
}