| 51 | \r\n\ |
| 52 | array a;\r\n\ |
| 53 | a.push_back(1); a.push_back(5);\r\n\ |
| 54 | int[] test(){ return { 1, 2 }; }\r\n\ |
| 55 | return int(a[0]) + int(a[1]) + test()[0];"; |
| 56 | TEST_RESULT("Implicit conversion on return from function", testImplicitConversionOnReturn, "7"); |
| 57 |