1 // RUN: %clang_cc1 -ast-print -triple i386-linux-gnu %s -o - -std=c++20 | FileCheck %s
3 // CHECK: struct DelegatingCtor1 {
4 struct DelegatingCtor1
{
5 // CHECK-NEXT: DelegatingCtor1();
8 // CHECK-NEXT: DelegatingCtor1(int) : DelegatingCtor1() {
9 DelegatingCtor1(int) : DelegatingCtor1() {
17 // CHECK: struct DelegatingCtor2 {
18 struct DelegatingCtor2
{
19 // CHECK-NEXT: template <typename Ty> DelegatingCtor2(Ty);
20 template <typename Ty
> DelegatingCtor2(Ty
);
22 // FIXME: Implicitly specialized method should not be output
23 // CHECK-NEXT: template<> DelegatingCtor2<float>(float);
25 // CHECK-NEXT: DelegatingCtor2(int X) : DelegatingCtor2((float)X) {
26 DelegatingCtor2(int X
) : DelegatingCtor2((float)X
) {
33 // CHECK: struct DelegatingCtor3 {
34 struct DelegatingCtor3
{
35 // CHECK: DelegatingCtor3(auto);
36 DelegatingCtor3(auto);
38 // FIXME: Implicitly specialized method should not be output
39 // CHECK: template<> DelegatingCtor3<const char *>(const char *);
41 // CHECK: DelegatingCtor3(int) : DelegatingCtor3("") {
42 DelegatingCtor3(int) : DelegatingCtor3("") {
49 // CHECK: struct CurlyCtorInit {
50 struct CurlyCtorInit
{
51 // CHECK-NEXT: struct A {
63 // FIXME: /*implicit*/(int)0 should not be output
64 // CHECK-NEXT: CurlyCtorInit(int *) : a(), i(/*implicit*/(int)0) {
65 CurlyCtorInit(int *) : a(), i() {
69 // CHECK-NEXT: CurlyCtorInit(int **) : a{}, i{} {
70 CurlyCtorInit(int **) : a
{}, i
{} {
74 // CHECK-NEXT: CurlyCtorInit(int ***) : a({}), i(0) {
75 CurlyCtorInit(int ***) : a({}), i(0) {
79 // FIXME: Implicit this should not be output
80 // CHECK-NEXT: CurlyCtorInit(int ****) : a({.x = 0}), i(this->a.x) {
81 CurlyCtorInit(int ****) : a({.x
= 0}), i(a
.x
) {
89 // CHECK: struct DefMethodsWithoutBody {
90 struct DefMethodsWithoutBody
{
91 // CHECK-NEXT: DefMethodsWithoutBody() = delete;
92 DefMethodsWithoutBody() = delete;
94 // CHECK-NEXT: DefMethodsWithoutBody() = default;
95 ~DefMethodsWithoutBody() = default;
97 // CHECK-NEXT: void m1() __attribute__((alias("X")));
98 void m1() __attribute__((alias("X")));
104 // ---- Check that implict (non-written) constructor initializers are not output
106 struct ImplicitCtorInit1
{
110 // CHECK: struct ImplicitCtorInit2 : ImplicitCtorInit1 {
111 struct ImplicitCtorInit2
: ImplicitCtorInit1
{
113 // CHECK-NEXT: ImplicitCtorInit2(int *) {
114 ImplicitCtorInit2(int *) {
118 // CHECK-NEXT: ImplicitCtorInit2(int **) : ImplicitCtorInit1() {
119 ImplicitCtorInit2(int **) : ImplicitCtorInit1() {