Granular test configurations
This commit is contained in:
@@ -0,0 +1 @@
|
||||
while (a > b) {int i = 1; i = i + 1;}
|
||||
@@ -0,0 +1,5 @@
|
||||
while (a > b)
|
||||
{
|
||||
var i : Int = 1
|
||||
i = i + 1
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
while (true) {}
|
||||
@@ -0,0 +1,3 @@
|
||||
while (true)
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
while (true) i = i + 1;
|
||||
@@ -0,0 +1,2 @@
|
||||
while (true)
|
||||
i = i + 1
|
||||
@@ -0,0 +1 @@
|
||||
while (true) return 1;
|
||||
@@ -0,0 +1,2 @@
|
||||
while (true)
|
||||
return 1
|
||||
Reference in New Issue
Block a user