Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

23 lines
363 B
C#

// CS0111: A member `MyClass.IMyInterface<System.String>.Prop' is already defined. Rename this member or use different parameter types
// Line: 18
using System;
interface IMyInterface<T>
{
bool Prop { set; }
}
public class MyClass: IMyInterface<string>
{
bool IMyInterface<string>.Prop
{
set {}
}
bool IMyInterface<System.String>.Prop
{
set {}
}
}