Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs1001-4.cs
1 // CS1001: Unexpected symbol `)', expecting identifier
2 // Line: 6
3
4 class B<T>
5 {
6         T Foo (T)
7         {
8         }
9 }