let q = <@ seq {
for i in [1..10] do
yield i
} |> Seq.head @>
q |> query |> ignore //error FS0039
I'am using VS2012 and F# core of "ReferenceAssemblies\Microsoft\FSharp\3.0\Runtime\v2.0\FSharp.Core.dll"
(version 2.3.0.0)
on .NET 3.5 ;
What did I miss here?