a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
277 B
C#
25 lines
277 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
public static int Test(Func<object> func)
|
|
{
|
|
func ();
|
|
return 1;
|
|
}
|
|
|
|
public static int Test(Func<string> func)
|
|
{
|
|
func ();
|
|
return 2;
|
|
}
|
|
|
|
public static int Main()
|
|
{
|
|
if (Test (() => (dynamic) 1) != 1)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
}
|