Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
// RUN: %clang_cc1 -std=c++98 %s -fexceptions -fcxx-exceptions -pedantic-errors -ast-dump | FileCheck %s
|
|
|
|
// RUN: %clang_cc1 -std=c++11 %s -fexceptions -fcxx-exceptions -pedantic-errors -ast-dump | FileCheck %s --check-prefixes=CHECK,CXX11
|
|
|
|
// RUN: %clang_cc1 -std=c++14 %s -fexceptions -fcxx-exceptions -pedantic-errors -ast-dump | FileCheck %s --check-prefixes=CHECK,CXX11,CXX14
|
|
|
|
// RUN: %clang_cc1 -std=c++1z %s -fexceptions -fcxx-exceptions -pedantic-errors -ast-dump | FileCheck %s --check-prefixes=CHECK,CXX11,CXX14
|
2021-10-21 03:37:19 +08:00
|
|
|
// RUN: %clang_cc1 -std=c++1z %s -fexceptions -fcxx-exceptions -pedantic-errors -triple i386-windows-pc -ast-dump | FileCheck %s --check-prefixes=CHECK,CXX11,CXX14
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
|
|
|
|
namespace dr1772 { // dr1772: 14
|
|
|
|
// __func__ in a lambda should name operator(), not the containing function.
|
|
|
|
// CHECK: NamespaceDecl{{.+}}dr1772
|
|
|
|
#if __cplusplus >= 201103L
|
|
|
|
auto x = []() { __func__; };
|
|
|
|
// CXX11: LambdaExpr
|
|
|
|
// CXX11: CXXRecordDecl
|
2021-10-21 03:37:19 +08:00
|
|
|
// CXX11: CXXMethodDecl{{.+}} operator() 'void () {{.*}}const'
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
// CXX11-NEXT: CompoundStmt
|
2021-10-15 05:52:47 +08:00
|
|
|
// CXX11-NEXT: PredefinedExpr{{.+}} 'const char[11]' lvalue __func__
|
|
|
|
// CXX11-NEXT: StringLiteral{{.+}} 'const char[11]' lvalue "operator()"
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
|
|
|
|
void func() {
|
|
|
|
// CXX11: FunctionDecl{{.+}} func
|
|
|
|
(void)[]() { __func__; };
|
|
|
|
// CXX11-NEXT: CompoundStmt
|
|
|
|
// CXX11: LambdaExpr
|
|
|
|
// CXX11: CXXRecordDecl
|
2021-10-21 03:37:19 +08:00
|
|
|
// CXX11: CXXMethodDecl{{.+}} operator() 'void () {{.*}}const'
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
// CXX11-NEXT: CompoundStmt
|
2021-10-15 05:52:47 +08:00
|
|
|
// CXX11-NEXT: PredefinedExpr{{.+}} 'const char[11]' lvalue __func__
|
|
|
|
// CXX11-NEXT: StringLiteral{{.+}} 'const char[11]' lvalue "operator()"
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
}
|
|
|
|
#endif // __cplusplus >= 201103L
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace dr1779 { // dr1779: 14
|
|
|
|
// __func__ in a function template, member function template, or generic
|
|
|
|
// lambda should have a dependent type.
|
|
|
|
// CHECK: NamespaceDecl{{.+}}dr1779
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void FuncTemplate() {
|
|
|
|
__func__;
|
|
|
|
// CHECK: FunctionDecl{{.+}} FuncTemplate
|
|
|
|
// CHECK-NEXT: CompoundStmt
|
|
|
|
// CHECK-NEXT: PredefinedExpr{{.+}} '<dependent type>' lvalue __func__
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class ClassTemplate {
|
|
|
|
// CHECK: ClassTemplateDecl{{.+}} ClassTemplate
|
|
|
|
void MemFunc() {
|
2021-10-21 03:37:19 +08:00
|
|
|
// CHECK: CXXMethodDecl{{.+}} MemFunc 'void (){{.*}}'
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
// CHECK-NEXT: CompoundStmt
|
|
|
|
// CHECK-NEXT: PredefinedExpr{{.+}} '<dependent type>' lvalue __func__
|
|
|
|
__func__;
|
|
|
|
}
|
|
|
|
void OutOfLineMemFunc();
|
|
|
|
};
|
|
|
|
|
|
|
|
template <typename T> void ClassTemplate<T>::OutOfLineMemFunc() {
|
2021-10-21 03:37:19 +08:00
|
|
|
// CHECK: CXXMethodDecl{{.+}}parent{{.+}} OutOfLineMemFunc 'void (){{.*}}'
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
// CHECK-NEXT: CompoundStmt
|
|
|
|
// CHECK-NEXT: PredefinedExpr{{.+}} '<dependent type>' lvalue __func__
|
|
|
|
__func__;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if __cplusplus >= 201402L
|
|
|
|
void contains_generic_lambda() {
|
|
|
|
// CXX14: FunctionDecl{{.+}}contains_generic_lambda
|
|
|
|
// CXX14: LambdaExpr
|
|
|
|
// CXX14: CXXRecordDecl
|
2021-10-21 03:37:19 +08:00
|
|
|
// CXX14: CXXMethodDecl{{.+}} operator() 'auto (auto) {{.*}}const'
|
Write test for CWG1772/CWG1762/CWG1779, mark them 'done', and update
cxx_dr_status.html
I noticed that these two DRs are currently working correctly, so I
added a pair of lit tests that check the AST (which is most useful for
CWG1779, since 'dependent' is really only observable in an ast dump) to
make sure __func__ works correctly in dependent cases, and in lambda
operator().
Also noticed that CWG1762, mostly an 'example' change, works correctly,
so added a test so that it gets marked 'done' as well.
Additionally, I regenerated cxx_dr_status.html, updating it for Clang
13's release, based on the cwg_status.html from August 12, 2021.
Differential Revision: https://reviews.llvm.org/D109956
2021-09-24 23:31:26 +08:00
|
|
|
// CXX14-NEXT: ParmVarDecl
|
|
|
|
// CXX14-NEXT: CompoundStmt
|
|
|
|
// CXX14-NEXT: PredefinedExpr{{.+}} '<dependent type>' lvalue __func__
|
|
|
|
(void)[](auto x) {
|
|
|
|
__func__;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __cplusplus >= 201402L
|
|
|
|
}
|