type T() =
static member (~%)(t : T) = t
let t = T()
let t' = %t // FAILS
The error message says t was expected to be of type Quotation.Expr<'a>.
% is a supposedly valid prefix operator, but is it possible to actually use it?
The error message says |
|||
|
|
|
The reason why you are seeing this behavior is because F# does not define You can see this by the following FSI interaction:
Thus if we redefine the top-level
but do note that quotation splicing will no longer work:
that's because the original definition of You can see similar results with |
||||
|
|
|
I'm not exactly sure why the
If the operator cannot be defined as
Background: In F# quotation code, it is used for "splicing" of expressions into another expression (to build an expression that is composed from another, previously defined expression). The error message suggests that the compiler did not see your definition.
|
||||
|
|