view base/src/java/util/Date.d @ 75:0b015f5925d8

Fix HashMap.remove, thank to yidabu for the testcase.
author Frank Benoit <benoit@tionex.de>
date Sat, 11 Apr 2009 11:32:49 +0200
parents 1bf55a6eb092
children fcf926c91ca4
line wrap: on
line source

module java.util.Date;

import java.lang.all;

class Date {
    long getTime(){
        implMissing(__FILE__,__LINE__);
        return 0;
    }
}