Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

21 lines
393 B
C#

using System;
public class NullableInt
{
public static int Main()
{
object x = null;
int? y = x as int?; /* Causes CS0077 */
Console.WriteLine("y: '{0}'", y);
Console.WriteLine("y.HasValue: '{0}'", y.HasValue);
int? b = 1 as int?;
if (b != 1)
return 1;
return 0;
}
}