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/tc1558.vhd ERROR: Parse error at line 41 column 7: 31: ENTITY c08s10b00x00p03n01i01558ent IS 32: END c08s10b00x00p03n01i01558ent; 33: 34: ARCHITECTURE c08s10b00x00p03n01i01558arch OF c08s10b00x00p03n01i01558ent IS 35: 36: BEGIN 37: TESTING: PROCESS 38: variable k : integer := 0; 39: BEGIN 40: L : for i in 1 to 10 loop 41: next L; ^ 42: k := 5; 43: end loop; 44: assert NOT( k=0 ) 45: report "***PASSED TEST: c08s10b00x00p03n01i01558" 46: severity NOTE; 47: assert ( k=0 ) 48: report "***FAILED TEST: c08s10b00x00p03n01i01558 - a next statement with a loop label is allowed inside a labeled loop" 49: severity ERROR; 50: wait; 51: END PROCESS TESTING;