Works here (Debian/testing, amd64):
zhuwuneng:/tmp> pike --version Pike v7.8 release 346 Copyright © 1994-2008 Linköping University Pike comes with ABSOLUTELY NO WARRANTY; This is free software and you are welcome to redistribute it under certain conditions; read the files COPYING and COPYRIGHT in the Pike distribution for more details. zhuwuneng:/tmp> cat foo.pike import GLU; void special(int k, int x, int y) { switch (k) { default: return; } }
void main() { special(1,2,3); } zhuwuneng:/tmp> pike foo.pike zhuwuneng:/tmp> uname -a Linux zhuwuneng 2.6.30-1-amd64 #1 SMP Sat Aug 15 18:09:19 UTC 2009 x86_64 GNU/Linux zhuwuneng:/tmp>
By the way, shouldn't the copyright be updated to contain the current year?