summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/gdc4.d
blob: 9a7499a1490b949a2fe98109bd771d9d77a96b43 (plain)
1
2
3
4
5
6
7
8
9
// https://bugzilla.gdcproject.org/show_bug.cgi?id=4
// { dg-do compile }

void test4()
{
    string str = "allo";
    static assert(!__traits(compiles, str.reverse));
    static assert(!__traits(compiles, str.sort));
}