Warning: session_start(): open(/var/lib/php/sessions/sess_jvuehfkad7h5hgnr577pa3fkf5, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
sclass Alt { byte which; O value; bool isA() { ret which == 1; } bool isB() { ret which == 2; } A a() { if (which != 1) _failMe(); ret (A) value; } B b() { if (which != 2) _failMe(); ret (B) value; } void _failMe { fail("Alt object is of wrong type: " + shortClassName(value)); } }