cleol
[mcs.git] / errors / cs0246-19.cs
blob23feece9ae6a0d40082224bdb3f3e4f9996aed49
1 // CS0246: The type or namespace name `aGgt' could not be found. Are you missing a using directive or an assembly reference?
2 // Line: 13
4 using System;
6 class C
8 public static void Main ()
10 try {
11 throw null;
12 } catch (ArgumentException) {
13 } catch (aGgt) {