/* * assign a value to a constant, expecting to fail */ module const_assignment_error; const N : integer = 20; begin N = 22; // this must fail end