Back to Purescript

`InvalidCoercibleInstanceDeclaration` Error

errors/InvalidCoercibleInstanceDeclaration.md

latest312 B
Original Source

InvalidCoercibleInstanceDeclaration Error

Example

purescript
module ShortFailingExample where

import Prim.Coerce (class Coercible)

instance coercible :: Coercible a b

Cause

Coercible instances are solved by the compiler and cannot be declared.

Fix

  • Remove the instance declaration.