summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/expected/cs/10151-operator_null-coalescing-assignment.cs
blob: 416e6afc76641b0055fbc8644b269451a8ddfa4d (plain)
1
2
3
4
5
6
7
8
public class Program
{
public static void Main()
{
	var thing = new int?();
	thing ??= new int?();
}
}