summaryrefslogtreecommitdiff
path: root/Examples/test-suite/php/cpp11_attribute_specifiers_runme.php
blob: 2336b319ac8186825fcd0a5ede526c94c32b2c63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

require "tests.php";

// New functions
check::functions(array('noReturn','noDiscard','noDiscardDeprecated','maybeUnused1','maybeUnused2','likely','test_string_literal'));
// New classes
check::classes(array('cpp11_attribute_specifiers','S'));
// No new vars
check::globals(array());

check::equal(test_string_literal(), 'Test [[ and ]] in string literal', "test_string_literal() wrong");

check::done();