/* * assign a constant to another constant (simplest possible const expression * besides a number or literal) */ module const_assignment_from_another_constant; const N : integer = 20; M : integer = N; // we allow the const expression to be another constant begin end