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

using System;

class C
{
	public static void Main ()
	{
		try {
			throw null;
		} catch (ArgumentException) {
		} catch (aGgt) {
		}
	}
}