| 1 | import os |
| 2 | |
| 3 | const vexe = os.quoted_path(@VEXE) |
| 4 | const issue_27078_project = os.join_path(os.dir(@FILE), 'project_issue_27078') |
| 5 | |
| 6 | fn test_fixed_array_with_int_cast_enum_const_in_separate_file_runs() { |
| 7 | res := os.execute('${vexe} run ${os.quoted_path(issue_27078_project)}') |
| 8 | assert res.exit_code == 0, res.output |
| 9 | } |
| 10 |