8a97e05efb17d661c307723d41b8d7a9424a36ce
[mono.git] / mcs / errors / cs1525-23.cs
1 // CS1525: Unexpected symbol `public', expecting `:', `;', or `{'
2 // Line: 5
3
4 class TorrentEditor {
5         TorrentEditor ()
6
7         public TorrentEditor ()
8         {
9         }
10 }