-
Notifications
You must be signed in to change notification settings - Fork 830
Closed
Labels
Area-Compiler-SigFileGengeneration of signature files - both compiler and IDEgeneration of signature files - both compiler and IDEFeature Improvement
Milestone
Description
I'm not entirely sure about this one and it really is a nitpick.
Repro steps
module Foo
let s = seq { 1 }
let a = [| 1 |]
let l = [ 1 ]leads to
module Foo
val s: seq<int>
val a: int array
val l: int listExpected behaviour
The style guide seems to prefer postfix style for core collections.
I would expect int seq here.
Actual behaviour
seq<int> was produced.
Related information
FCS: FSharpCheckFileResults.GenerateSignature
edgarfgp
Metadata
Metadata
Assignees
Labels
Area-Compiler-SigFileGengeneration of signature files - both compiler and IDEgeneration of signature files - both compiler and IDEFeature Improvement
Type
Projects
Status
Done