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