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();
|
||
|
}
|
||
|
}
|