2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-21 17:32:23 +00:00
Files
website/common/code/test/tests/bootstrap/syntax-error.php
2017-02-09 13:28:48 +00:00

8 lines
87 B
PHP

<?php
/* CONTAINS_SYNTAX_ERROR */
function a($x) {}
a(1) // Missing semi-colon
a(2);