mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
351 B
D
11 lines
351 B
D
// https://issues.dlang.org/show_bug.cgi?id=1170
|
|
type x;
|
|
mixin("alias int type;");
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=10739
|
|
template DECLARE_HANDLE() {
|
|
struct HINTERNET { int h; }
|
|
}
|
|
const INTERNET_INVALID_STATUS_CALLBACK = cast(INTERNET_STATUS_CALLBACK) -1;
|
|
mixin DECLARE_HANDLE;
|
|
alias void function(HINTERNET) INTERNET_STATUS_CALLBACK;
|