Imported Upstream version 4.4.0.40

Former-commit-id: 6427cc082e74df30afc535fd906a3494b74b0817
This commit is contained in:
Xamarin Public Jenkins
2016-03-16 12:38:19 -04:00
parent f3e3aab35a
commit a632333cc7
110 changed files with 1496 additions and 556 deletions

View File

@@ -98,6 +98,35 @@ class C
if ((null | b4) != true)
return 103;
bool? x_n = null;
bool? x_f = false;
bool? x_t = true;
bool? res;
res = null & x_n;
if (res.HasValue)
return 201;
res = null & x_t;
if (res.HasValue)
return 202;
res = null & x_f;
if (res.Value != false)
return 203;
res = null | x_n;
if (res.HasValue)
return 204;
res = null | x_t;
if (res.Value != true)
return 205;
res = null | x_f;
if (res.HasValue)
return 206;
return 0;
}