comparison java/src/java/util/AbstractSet.d @ 21:9b96950f2c3c

the 'java' tree compiles on both D1-Tango and D2-Phobos
author Frank Benoit <benoit@tionex.de>
date Thu, 19 Mar 2009 20:38:55 +0100
parents eb8ff453285d
children
comparison
equal deleted inserted replaced
20:dccb717aa902 21:9b96950f2c3c
7 import java.util.AbstractCollection; 7 import java.util.AbstractCollection;
8 8
9 abstract class AbstractSet : AbstractCollection, Set { 9 abstract class AbstractSet : AbstractCollection, Set {
10 this(){ 10 this(){
11 } 11 }
12 int opEquals(Object o){ 12 equals_t opEquals(Object o){
13 implMissing( __FILE__, __LINE__ ); 13 implMissing( __FILE__, __LINE__ );
14 return 0; 14 return 0;
15 } 15 }
16 hash_t toHash(){ 16 hash_t toHash(){
17 implMissing( __FILE__, __LINE__ ); 17 implMissing( __FILE__, __LINE__ );