summaryrefslogtreecommitdiff
path: root/mcs/errors/cs4013.cs
blob: c7acb2fa24e4214c2e4f466656869ada944121ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS4013: Local variables of type `System.TypedReference' cannot be used inside anonymous methods, lambda expressions or query expressions
// Line: 9

using System;

class C
{
	public static void Main ()
	{
		int i = 1;
		TypedReference tr = __makeref (i);
		{
			Action a = () => {	TypedReference tr2 = tr; };
		}
	}
}