WARN: SCM provider autodetection failed. No SCM provider claims to support this project. Please use sonar.scm.provider to define SCM of your project. ERROR: Unable to parse source file : /home/adieumeg/Documents/Projects/Valencia/workspaces/vhdl_examples/ghdl/ghdl/testsuite/vests/vhdl-93/billowitch/compliant/tc1568.vhd ERROR: Parse error at line 46 column 9: 36: BEGIN 37: TESTING: PROCESS 38: constant c_boolean_2 : boolean := true; 39: variable v_boolean : boolean := false; 40: variable counter : integer := 0; 41: BEGIN 42: L1 : 43: while v_boolean /= c_boolean_2 loop 44: v_boolean := c_boolean_2 ; 45: for j in 1 to 3 loop 46: next L1 when j = j ; ^ 47: end loop ; 48: counter := counter + 1 ; 49: end loop L1; 50: assert NOT( counter = 0 ) 51: report "***PASSED TEST: c08s10b00x00p03n01i01568" 52: severity NOTE; 53: assert ( counter = 0 ) 54: report "***FAILED TEST: c08s10b00x00p03n01i01568 - A next statement with a loop label is only allowed within the labeled loop, and applies to that loop." 55: severity ERROR; 56: wait;