Merge pull request #3565 from vargaz/no-free-imt-thunks
[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 }