[w32file] Remove dead code
[mono.git] / mcs / errors / cs0246-19.cs
1 // CS0246: The type or namespace name `aGgt' could not be found. Are you missing an assembly reference?
2 // Line: 13
3
4 using System;
5
6 class C
7 {
8         public static void Main ()
9         {
10                 try {
11                         throw null;
12                 } catch (ArgumentException) {
13                 } catch (aGgt) {
14                 }
15         }
16 }