Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
test13953.d
blob: cde7d91c26f5d7dc2ef85fba5b0115670f441ce0 [
file
] [
log
] [
blame
]
// https://issues.dlang.org/show_bug.cgi?id=13953
struct
S
{
string
[
string
]
aa
;
alias
aa
this
;
}
void
main
()
{
S s
;
s
[
"foo"
]
=
"bar"
;
s
.
remove
(
"foo"
);
}