Commit 33738aa7 authored by stancakapost's avatar stancakapost
Browse files

using match instead of ==

parent 272d0f74
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@ testcase TC_Sem_060302_structured_types_004() runs on GeneralComp {
    
   v_a:=v_b;
    
    if ( v_a.integer==1 ) {
    if ( match(v_a.integer, 1) ) {
        setverdict(pass);
    }
    else {