summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0246-31.cs
blob: b1f71beb2b6434b3d321d5c5d202b466da0955e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0246: The type or namespace name `Etp' could not be found. Are you missing an assembly reference?
// Line: 8

class Test
{
	static void Main ()
	{
		try {
		} catch (Etp e) {
		} catch {
		}
	}
}