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/tc1642.vhd ERROR: Parse error at line 43 column 11: 33: procedure procI; 34: function funcI return INTEGER; 35: 36: end c08s12b00x00p06n01i01642pkg; 37: 38: package body c08s12b00x00p06n01i01642pkg is 39: 40: procedure procI is 41: begin 42: -- Return. 43: return; ^ 44: 45: -- Statement should NEVER be executed. 46: assert (FALSE) 47: report "Statement in procedure was executed in error."; 48: end procI; 49: 50: function funcI return INTEGER is 51: begin 52: -- Return from the function. 53: return( 4 );