forked from llvm/llvm-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Concepts] Fix ast dump for immediately declared constraint.
Reviewed By: nridge Differential Revision: https://reviews.llvm.org/D84461
- Loading branch information
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -std=c++2a -ast-dump -ast-dump-filter Foo %s | FileCheck -strict-whitespace %s | ||
|
||
// Test with serialization: | ||
// RUN: %clang_cc1 -std=c++20 -triple x86_64-unknown-unknown -emit-pch -o %t %s | ||
// RUN: %clang_cc1 -x c++ -std=c++20 -triple x86_64-unknown-unknown -include-pch %t \ | ||
// RUN: -ast-dump-all -ast-dump-filter Foo /dev/null \ | ||
// RUN: | FileCheck --strict-whitespace %s | ||
|
||
template <typename T, typename U> | ||
concept binary_concept = true; | ||
|
||
template <typename T> | ||
struct Foo { | ||
// CHECK: TemplateTypeParmDecl {{.*}} referenced Concept {{.*}} 'binary_concept' | ||
// CHECK-NEXT: |-ConceptSpecializationExpr {{.*}} 'bool' | ||
// CHECK-NEXT: `-TemplateArgument {{.*}} type 'int' | ||
template <binary_concept<int> R> | ||
Foo(R); | ||
}; |