[xbuild] Add support for Before/AfterTargets.
[mono.git] / mcs / errors / cs1001-5.cs
1 // CS1001: Unexpected symbol `{', expecting identifier
2 // Line: 6
3
4 public class SomeClass {
5         public void SomeMethod<T>() where
6         {}
7 }