summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-50.cs
blob: 89cae6c968324db7c44cfea8f67611c8d7e2c363 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS1525: Unexpected symbol `}', expecting `{' or `when'
// Line: 11

using System;

class MyTest
{
	public static void Main (string[] args)
	{
		try {
		} catch (Exception)
	}
}