Skip to content

Commit f602545

Browse files
pbackusdlang-bot
authored andcommitted
Fix issue 21198 - Inout copy constructor on union field does not prevent copy-initialization of union
Previously, generated copy constructors of unions were disabled only if they failed to type-check. They are now disabled in all cases, as required by the language spec.
1 parent 28c0276 commit f602545

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

src/dmd/dsymbolsem.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ LcheckFields:
528528
ccd.semantic3(sc2);
529529
//printf("ccd semantic: %s\n", ccd.type.toChars());
530530
sc2.pop();
531-
if (global.endGagging(errors))
531+
if (global.endGagging(errors) || sd.isUnionDeclaration())
532532
{
533533
ccd.storage_class |= STC.disable;
534534
ccd.fbody = null;

test/fail_compilation/test21198.d

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// https://issues.dlang.org/show_bug.cgi?id=21198
2+
3+
/*
4+
TEST_OUTPUT:
5+
---
6+
fail_compilation/test21198.d(23): Error: copy constructor `test21198.U.this` cannot be used because it is annotated with `@disable`
7+
---
8+
*/
9+
10+
struct S
11+
{
12+
this(ref inout(S) other) inout {}
13+
}
14+
15+
union U
16+
{
17+
S s;
18+
}
19+
20+
void fun()
21+
{
22+
U original;
23+
U copy = original;
24+
}

0 commit comments

Comments
 (0)