Merge pull request #3591 from directhex/mono_libdir_fallback
[mono.git] / mcs / errors / cs0111-24.cs
1 // CS0111: A member `MyClass.IMyInterface<System.String>.Prop' is already defined. Rename this member or use different parameter types
2 // Line: 18
3
4 using System;
5
6 interface IMyInterface<T>
7 {
8         bool Prop { set; }
9 }
10
11 public class MyClass: IMyInterface<string>
12 {
13         bool IMyInterface<string>.Prop
14         {
15                 set {}
16         }
17
18         bool IMyInterface<System.String>.Prop
19         {
20                 set {}
21         }
22 }