Robert Clipsham wrote: > interface I > { > int foobar(); > // The following line will cause an error when uncommented, as > // you cannot implement methods in an interface > // void baz() {} > } Just to be complete: interfaces can have static or final functions in D2: static void baz() {} final void baz_2() {} Ali