Syntax highlighting for F#: missing colouring of 'let' when it is followed by an attribute.
let foo = 1
let bar () = 5
[<Something>] let fizz number = "fizz"
// the following is legal F# but is currently formatted wrong.
let [<Something>] buzz number = "buzz"
let foobar = 15