a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
12 lines
198 B
C#
12 lines
198 B
C#
// Compiler options: -r:gtest-581-lib.dll
|
|
|
|
class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
var f1 = (IA<A>) new C();
|
|
var f2 = (IA<B>) new C();
|
|
var f3 = (IB<A>) new C();
|
|
var f4 = (IB<C>) new C();
|
|
}
|
|
} |