mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
31 lines
394 B
D
31 lines
394 B
D
/*
|
|
REQUIRED_ARGS: -H -Hd${RESULTS_DIR}/compilable
|
|
PERMUTE_ARGS: -d -dw
|
|
|
|
OUTPUT_FILES: ${RESULTS_DIR}/compilable/test7754.di
|
|
TEST_OUTPUT:
|
|
---
|
|
=== ${RESULTS_DIR}/compilable/test7754.di
|
|
// D import file generated from 'compilable/test7754.d'
|
|
struct Foo(T)
|
|
{
|
|
shared static this()
|
|
{
|
|
}
|
|
static this()
|
|
{
|
|
}
|
|
}
|
|
---
|
|
*/
|
|
|
|
struct Foo(T)
|
|
{
|
|
shared static this()
|
|
{
|
|
}
|
|
|
|
static this()
|
|
{
|
|
}
|
|
}
|