1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/ice15788.d(17): Error: none of the overloads of 'iota' are callable using argument types !()(S, S) 5 --- 6 */ 7 8 import imports.range15788 : iota; 9 iota()10 void iota() {} 11 12 struct S {} 13 main()14 void main() 15 { 16 S s; 17 iota(s, s); 18 } 19