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/tc2094.vhd ERROR: Parse error at line 47 column 7: 37: SUBTYPE boolean_4 is boolean_v (1 to 4); 38: SUBTYPE boolean_8 is boolean_v (1 to 8); 39: 40: FUNCTION return_array RETURN boolean_4 is 41: constant l_operand : boolean_4 := (true,false,true,false); 42: begin 43: RETURN l_operand; 44: end return_array; 45: 46: BEGIN 47: l : block ^ 48: generic ( info : boolean_8 ); 49: generic map ( return_array & return_array ); 50: begin 51: assert NOT(info = (true,false,true,false,true,false,true,false)) 52: report "***PASSED TEST: c07s02b04x00p20n01i02094" 53: severity NOTE; 54: assert (info = (true,false,true,false,true,false,true,false)) 55: report "***FAILED TEST: c07s02b04x00p20n01i02094 - Function array concatenation did not succeed." 56: severity ERROR; 57: end block;