1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/fail317.d(10): Error: function fail317.I.f has no function body with return type inference 5 --- 6 */ 7 8 interface I 9 { f()10 auto f() 11 in {} 12 out {} 13 } 14