Add some test files.
[macgdbp.git] / dev / tests / static.php
1 <?php
2
3 class C {
4 private static $bar;
5
6 public static function test() {
7 self::$bar = 'moo';
8 }
9
10 public static function moo() {
11 return self::$bar;
12 }
13 }
14
15 C::test();
16
17 C::moo();
18