От: | nikov | http://www.linkedin.com/in/nikov | |
Дата: | 26.05.11 20:01 | ||
Оценка: |
using System.Linq;
module Program
{
Main() : void
{
def x = [].ToList;
_ = x()
}
}
using System.Linq;
module Program
{
Main() : void
{
def x = [].ToList; // Error: none of the overloads of ToList is possible
x()
}
}