8 lines
176 B
Coq
8 lines
176 B
Coq
|
|
module top;
|
||
|
|
// You can't have duplicate values!
|
||
|
|
enum {red = 1, green, blue = 2} light;
|
||
|
|
enum {first = 2, second = 1, third} nums;
|
||
|
|
|
||
|
|
initial $display("FAILED");
|
||
|
|
endmodule
|