Merge pull request #409 from Alkarex/patch-1
[mono.git] / mcs / errors / cs1525-50.cs
1 // CS1525: Unexpected symbol `}', expecting `{'
2 // Line: 11
3
4 using System;
5
6 class MyTest
7 {
8         public static void Main (string[] args)
9         {
10                 try {
11                 } catch (Exception)
12         }
13 }