3c1f479b9d
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
16 lines
251 B
C#
16 lines
251 B
C#
using System.Collections.Generic;
|
|
|
|
class X
|
|
{
|
|
public static int Main ()
|
|
{
|
|
switch (nameof (Dictionary<int,int>.Add)) {
|
|
case nameof (List<int>.Equals):
|
|
return 1;
|
|
case nameof(List<int>.Add):
|
|
return 0;
|
|
default:
|
|
return 2;
|
|
}
|
|
}
|
|
} |