Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0101-4.cs
1 // CS0101: The namespace `global::' already contains a definition for `I<T>'
2 // Line: 8
3
4 interface I<T>
5 {
6 }
7
8 partial class I<T>
9 {
10 }