aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/nogc1.d
blob: 2894ef00eac0070a35603c1f066aac468836204c (plain)
1
2
3
4
5
6
7
8
// { dg-do compile }
// { dg-options "-fno-druntime" }
// { dg-shouldfail "expressions depend on GC" }

string testConcat(string a, string b)
{
    return a ~ b; // { dg-error "requires the GC and cannot be used with .-fno-druntime." }
}