Granular test configurations
This commit is contained in:
@@ -0,0 +1 @@
|
||||
if (1 > 0) {} else {}
|
||||
@@ -0,0 +1,6 @@
|
||||
if (1 > 0)
|
||||
{
|
||||
}
|
||||
else
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
if (1 > 0) {int n = 1; return n;} else {return 0;}
|
||||
@@ -0,0 +1,9 @@
|
||||
if (1 > 0)
|
||||
{
|
||||
var n : Int = 1
|
||||
return n
|
||||
}
|
||||
else
|
||||
{
|
||||
return 0
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
if (true) return 1; else return 0;
|
||||
@@ -0,0 +1,4 @@
|
||||
if (true)
|
||||
return 1
|
||||
else
|
||||
return 0
|
||||
@@ -0,0 +1 @@
|
||||
if (1 > 0) {int n = 1; return n;}
|
||||
@@ -0,0 +1,5 @@
|
||||
if (1 > 0)
|
||||
{
|
||||
var n : Int = 1
|
||||
return n
|
||||
}
|
||||
Reference in New Issue
Block a user