mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
29 lines
440 B
D
29 lines
440 B
D
/*
|
|
REQUIRED_ARGS: -HC=verbose -extern-std=c++98 -o-
|
|
TEST_OUTPUT:
|
|
---
|
|
// Automatically generated by Digital Mars D Compiler v$n$
|
|
|
|
#pragma once
|
|
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
template <typename T, typename U>
|
|
struct TS final
|
|
{
|
|
TS()
|
|
{
|
|
}
|
|
};
|
|
|
|
// Ignored dtoh_AliasDeclaration_98.TSD because `using` declarations require C++ 11
|
|
---
|
|
*/
|
|
|
|
extern(C++):
|
|
|
|
struct TS(T, U) {}
|
|
alias TSD = TS;
|