Skip to content

Commit

Permalink
add expressions in control sturctures
Browse files Browse the repository at this point in the history
  • Loading branch information
hilnius committed Jan 12, 2016
1 parent f2f3e26 commit 09f6fd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tests/Test.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ public void dsqqsd(qsd a, qsdqsdl p, int b) {

class SubClass {
public void getInstance() {
if(1) {
if(pika.test()) {
return;
}
assert 1 ;
assert 1 : 1;
switch (1) {
switch (myVar) {
case 1:
return 1;
case 1:
return;
case 1:
if(1) {
if(myVar == var2) {
return dsqdsql;
}
case 1:
Expand All @@ -77,7 +77,7 @@ public void getInstance() {
case 1:
if(120) {
do {
if(1 + 12)
if(myVar >= coucou)
for (;; ) {
return 3;
synchronized (1) {
Expand Down

0 comments on commit 09f6fd2

Please sign in to comment.