mirror of
https://github.com/boostorg/website.git
synced 2026-01-20 17:12:18 +00:00
8 lines
87 B
PHP
8 lines
87 B
PHP
<?php
|
|
|
|
/* CONTAINS_SYNTAX_ERROR */
|
|
|
|
function a($x) {}
|
|
a(1) // Missing semi-colon
|
|
a(2);
|