mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
16 lines
171 B
Java
16 lines
171 B
Java
|
|
class A
|
||
|
|
{
|
||
|
|
static
|
||
|
|
{
|
||
|
|
System.out.println ("A initialized");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public class PR260
|
||
|
|
{
|
||
|
|
public static void main(String args[])
|
||
|
|
{
|
||
|
|
Class klass = A.class;
|
||
|
|
}
|
||
|
|
}
|