----------------------------------------------------------------------- -- Project: Bluespec -- File: EAmbOper.bs -- Author : Amit Grover -- Description: This testcase triggers the EAmbOper error of the bluespec -- compiler (Ambiguous Operator Combination with op1, and op2) -- -- Op1 and Op2 are "==" operators below ----------------------------------------------------------------------- package EAmbOper () where -- import Int func :: Int 4 -> Int 4 -> Int 4 -> Bool func a b c = a==b==c