summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/gdc300.d
blob: d1aae5933876547b8911aa7110c977e50e3542db (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
// https://bugzilla.gdcproject.org/show_bug.cgi?id=300
// { dg-additional-options "-fmain" }
// { dg-do link { target d_runtime_has_std_library } }

struct S300(Range)
{
    double test(size_t remaining)
    {
        double r;
        return r ^^ remaining;
    }
}

auto link300a(Range)(Range)
{
    return S300!(Range)();
}

void link300()
{
    struct I {}
    static assert(is(typeof(link300a(I())) == struct));
    auto sample = link300a(I());
    sample.test(5);
}