linux-packaging-mono/mcs/tests/test-null-operator-04.cs

15 lines
122 B
C#
Raw Normal View History

using System;
public class D
{
void Foo ()
{
}
public static void Main()
{
D d = null;
Action a = d?.Foo;
}
}