aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/compilable/art4769.d
blob: b9620588eaaa5b6350e18c948aafc1f29c6691eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D.bugs&article_id=4769

// EXTRA_SOURCES: imports/art4769a.d imports/art4769b.d
// PERMUTE_ARGS:

module art4769;

private import imports.art4769a;

struct Vector(T)
{
    DataStreamability!(T).footype f;

    static if (DataStreamability!(T).isStreamable)
	void writeTo()
	{
	}
}