[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0246-31.cs
1 // CS0246: The type or namespace name `Etp' could not be found. Are you missing an assembly reference?
2 // Line: 8
3
4 class Test
5 {
6         static void Main ()
7         {
8                 try {
9                 } catch (Etp e) {
10                 } catch {
11                 }
12         }
13 }