Using F# 2.0 and FSI I have the following:
let foo = List(xs)//works
let bar = new List(xs) //need type parameter 'The type System.Collectsion.Generic<_> expects 1 type argument 0 was given
now of course I can do:
let baz = new List<TypeOItemsInXs>(xs)//why?
Now is there something I reasonably can do? Why do I have to choose between working type inference or warnings free code (if 'List' is disposable you get a warning that you should use 'new' to be explicit about it).
Any workaround? Is this a bug or something?