summaryrefslogtreecommitdiff
path: root/mcs/errors/cs7003-6.cs
blob: 7c6fe68d46b9e0343de376ef69c3209d717347ba (plain)
1
2
3
4
5
6
7
8
9
10
// CS7003: Unbound generic name is not valid in this context
// Line: 8

class C
{
    static void Main ()
    {
		System.Action<>.Combine ();
	}
}