mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
19 lines
298 B
D
19 lines
298 B
D
// REQUIRED_ARGS: -c
|
|
// PERMUTE_ARGS:
|
|
module object;
|
|
|
|
class Object { }
|
|
|
|
class TypeInfo { }
|
|
class TypeInfo_Class : TypeInfo
|
|
{
|
|
version(D_LP64) { ubyte[136+16] _x; } else { ubyte[68+16] _x; }
|
|
}
|
|
|
|
class Throwable { }
|
|
|
|
int _d_run_main()
|
|
{
|
|
try { } catch(Throwable e) { return 1; }
|
|
return 0;
|
|
}
|