The following post is the complete one: Given the following code:
int[] arr = [1, 2, 9, 4, 10, 6];
auto r = sort(arr);
if(is(typeof(r) == SortedRange!(int[], "a<b")))
writeln("first if");
if(is(typeof(r) == SortedRange!(int[], "a < b")))
writeln("second if");
The program outputs only "second if". I assumed that it should
have printed both
ifs. Is this a bug? Best regards, RazvanN
