Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1525-32.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 }