Refactor the parsing and processing of configuration options ... just a bit ...
[hiphop-php.git] / hphp / test / slow / traits / 2008.php
blob7cdf5ceca71a418650a902f607fa51ee2fc68028
1 <?php
3 interface a {
6 abstract class b {
9 final class c {
12 trait d {
15 var_dump(class_exists('a'));
16 var_dump(class_exists('b'));
17 var_dump(class_exists('c'));
18 var_dump(class_exists('d'));