mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
24 lines
324 B
OpenEdge ABL
24 lines
324 B
OpenEdge ABL
// EXTRA_SOURCES: imports/test24280b.i
|
|
|
|
struct timespec
|
|
{
|
|
int s;
|
|
};
|
|
|
|
/* https://issues.dlang.org/show_bug.cgi?id=24303 */
|
|
|
|
typedef struct {} Slice;
|
|
|
|
struct Lang
|
|
{
|
|
Slice *slices;
|
|
};
|
|
|
|
void langmap(struct Lang *self)
|
|
{
|
|
Slice slice = *self->slices;
|
|
}
|
|
|
|
/* https://issues.dlang.org/show_bug.cgi?id=24306 */
|
|
|
|
struct T;
|