Commit 39e05e14 authored by kovacsa's avatar kovacsa
Browse files

syntax fixes

parent e676cfaf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@
module Sem_050202_Scope_006 {

type component GeneralComp {	    	    
    const integer label := 0;
    const integer repeatedIdentifier := 0;
}	

testcase TC_Sem_0502_Scope_006() runs on GeneralComp {
    var boolean label := true;
    var boolean repeatedIdentifier := true;
}	

control{  
+2 −2
Original line number Diff line number Diff line
@@ -7,11 +7,11 @@
module Sem_050202_Scope_007 {

type component GeneralComp {	    	    
    const integer label := 0;
    const integer repeatedIdentifier := 0;
}	

function f_funcScope() {
    var boolean label := true; 	    
    var boolean repeatedIdentifier := true; 	    
}

testcase TC_Sem_0502_Scope_007() runs on GeneralComp {
+2 −2
Original line number Diff line number Diff line
@@ -10,11 +10,11 @@ type component GeneralComp {
}	

function f_funcScope() {
    const integer label := 0; 	    
    const integer repeatedIdentifier := 0; 	    
}

testcase TC_Sem_0502_Scope_008() runs on GeneralComp {
    var boolean label := true;
    var boolean repeatedIdentifier := true;
    f_funcScope();
}	

+2 −2
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
 ** @verdict  pass reject
 ***************************************************/
module Sem_050202_Scope_009 {
    const integer label := 0; 	    
    const integer repeatedIdentifier := 0; 	    

type component GeneralComp {	    	    
}	
@@ -14,7 +14,7 @@ function f_funcScope() {
}

testcase TC_Sem_0502_Scope_009() runs on GeneralComp {
    var boolean label := true;
    var boolean repeatedIdentifier := true;
    f_funcScope();
}	

+2 −2
Original line number Diff line number Diff line
@@ -5,13 +5,13 @@
 ** @verdict  pass reject
 ***************************************************/
module Sem_050202_Scope_010 {
    const integer label := 0; 	    
    const integer repeatedIdentifier := 0; 	    

type component GeneralComp {	    	    
}	

function f_funcScope() {
    var boolean label := true;
    var boolean repeatedIdentifier := true;
}

testcase TC_Sem_0502_Scope_010() runs on GeneralComp {
Loading