mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 20:09:48 +08:00
15 lines
261 B
Java
15 lines
261 B
Java
|
import java.util.Vector;
|
||
|
import java.util.Enumeration;
|
||
|
|
||
|
public class PR5848
|
||
|
{
|
||
|
private Vector data;
|
||
|
void sub()
|
||
|
{
|
||
|
long sz = 0;
|
||
|
for (Enumeration e = data.elements() ; e.hasMoreElements() ;) {
|
||
|
sz =+ ((byte[])e.nextElement()).length;
|
||
|
}
|
||
|
}
|
||
|
}
|