summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1525-23.cs
blob: 8a97e05efb17d661c307723d41b8d7a9424a36ce (plain)
1
2
3
4
5
6
7
8
9
10
// CS1525: Unexpected symbol `public', expecting `:', `;', or `{'
// Line: 5

class TorrentEditor {
	TorrentEditor ()

	public TorrentEditor ()
	{
	}
}