You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
debug(check_compliance) staticif (!is(Container!(NC, int))) pragma(msg, __traits(identifier, Container) ~" does not support non-copyable keys");
240
+
debug(check_compliance) staticif (!is(Container!(int, NC))) pragma(msg, __traits(identifier, Container) ~" does not support non-copyable values");
241
+
242
+
staticstructNI { @disablethis(); }
243
+
debug(check_compliance) staticif (!is(Container!(NI, int))) pragma(msg, __traits(identifier, Container) ~" does not support non-constructable keys");
244
+
debug(check_compliance) staticif (!is(Container!(int, NI))) pragma(msg, __traits(identifier, Container) ~" does not support non-constructable values");
245
+
246
+
staticstructND { @disable~this() {} }
247
+
debug(check_compliance) staticif (!is(Container!(ND, int))) pragma(msg, __traits(identifier, Container) ~" does not support non-destructable keys");
248
+
debug(check_compliance) staticif (!is(Container!(int, ND))) pragma(msg, __traits(identifier, Container) ~" does not support non-destructable values");
0 commit comments