aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/test7754.d
blob: 724dce40c93bba2dd3c99d41df9ad6021b2572ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
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()
   {
   }
}