Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs1525-2.cs
1 // CS1525: Unexpected symbol `<', expecting `,' or `>'
2 // Line: 9
3
4 interface IFoo<T>
5 {
6 }
7
8 public class Bar {
9         public void GetItemCommand<IFoo<int>>()
10         {
11         }
12 }