disallow keywords as identifiers
[hiphop-php.git] / hphp / hack / test / full_fidelity / cases / keyword_as_function_allowed.php
blobfadb2abd216ee15b8cdeba01587d05bf8122f595
1 <?hh
3 function arraykey() {}
4 function attribute() {}
5 function binary() {}
6 function bool() {}
7 function boolean() {}
8 function category() {}
9 function children() {}
10 function classname() {}
11 function coroutine() {}
12 function darray() {}
13 function define() {}
14 function dict() {}
15 function double() {}
16 function empty() {}
17 function enum() {}
18 function fallthrough() {}
19 function false() {}
20 function float() {}
21 function from() {}
22 function int() {}
23 function integer() {}
24 function is() {}
25 function isset() {}
26 function keyset() {}
27 function let() {}
28 function mixed() {}
29 function newtype() {}
30 function noreturn() {}
31 function null() {}
32 function num() {}
33 function object() {}
34 function parent() {}
35 function real() {}
36 function resource() {}
37 function self() {}
38 function string() {}
39 function super() {}
40 function suspend() {}
41 function this() {}
42 function true() {}
43 function type() {}
44 function unset() {}
45 function varray() {}
46 function vec() {}
47 function void() {}
48 function where() {}
50 arraykey();
51 attribute();
52 binary();
53 bool();
54 boolean();
55 category();
56 children();
57 classname();
58 coroutine();
59 darray();
60 define();
61 dict();
62 double();
63 empty();
64 enum();
65 fallthrough();
66 false();
67 float();
68 from();
69 int();
70 integer();
71 is();
72 isset();
73 keyset();
74 let();
75 mixed();
76 newtype();
77 noreturn();
78 null();
79 num();
80 object();
81 parent();
82 real();
83 resource();
84 self();
85 string();
86 super();
87 suspend();
88 this();
89 true();
90 type();
91 unset();
92 varray();
93 vec();
94 void();
95 where();