dmd/compiler/test/runnable/link11069a.d
Nicholas Wilson 9a5ce0e1ef
Actually give deprecation for -noboundscheck (#16687)
This has been deprecated for at least 7 years...
2024-07-13 16:08:02 +08:00

14 lines
337 B
D

// EXTRA_FILES: imports/std11069array.d imports/std11069container.d imports/std11069range.d imports/std11069typecons.d
// REQUIRED_ARGS: -boundscheck=off
// <-- To remove necessity of _D7imports13std11069array7__arrayZ
class Bar
{
import imports.std11069container;
BinaryHeap!(Foo[]) Heap;
struct Foo {}
}
void main() {}