mirror of
https://github.com/dlang/dmd.git
synced 2025-04-29 06:30:10 +03:00
17 lines
337 B
D
17 lines
337 B
D
// PERMUTE_ARGS:
|
|
// REQUIRED_ARGS: -D -Dd${RESULTS_DIR}/compilable -o-
|
|
// POST_SCRIPT: compilable/extra-files/ddocAny-postscript.sh
|
|
|
|
module ddoc7795;
|
|
|
|
struct TimeValue {
|
|
this(int hour, int minute, int second = 0, int ms = 0) {}
|
|
}
|
|
|
|
///
|
|
struct DateTime {
|
|
///
|
|
this(int x, TimeValue t = TimeValue(0, 0)) {}
|
|
}
|
|
|
|
void main() { }
|