I noticed that a C# library which I have used for years suddenly stopped to compile, after updating from version 10.0.0.2569 to 10.0.0.2575. The problem remains with any of the newer packages.
Thanx, this is very strange indeed, it looks like a compiler bug. I’ll log an issue:
var nodes = valuesCache.Select(v => new TNode<T>(v)); // E28 Unknown type "TNode<1>"
var nodes2 = valuesCache.Select(v => new TNode<String>(v)); // E486 Parameter 1 is "T", should be "String", in call to TNode (String value)
var nodes3 = valuesCache.Select(v => new TNode<String>("x")); // E28 Unknown type "TNode<1>"