I copied this example from the FsUnit project page:
open NUnit.Framework
open FsUnit
let [<Test>] trivial () = 1 |> should not (equal 2)
F# gives me the following error:
Error 2 This expression was expected to have type bool but here has type Constraints.EqualConstraint
Error 1 The type 'bool' is not compatible with the type 'Constraints.Constraint'
What am I doing wrong?