12 lines
123 B
Coq
12 lines
123 B
Coq
|
|
module test();
|
||
|
|
|
||
|
|
typedef enum { a, b, c } enum_type;
|
||
|
|
|
||
|
|
enum_type enum_value;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
enum_value = 1;
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|