Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ast-dump-using.cpp « AST « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6f971dfa849f28e1fe8a217abd546a678fb78b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump %s | FileCheck -strict-whitespace %s

namespace a {
struct S;
}
namespace b {
using a::S;
// CHECK:      UsingDecl {{.*}} a::S
// CHECK-NEXT: UsingShadowDecl {{.*}} implicit CXXRecord {{.*}} 'S'
// CHECK-NEXT: `-RecordType {{.*}} 'a::S'
typedef S f; // to dump the introduced type
// CHECK:      TypedefDecl
// CHECK-NEXT: `-ElaboratedType {{.*}} 'S' sugar
// CHECK-NEXT:   `-UsingType {{.*}} 'a::S' sugar
// CHECK-NEXT:     |-UsingShadow {{.*}} 'S'
// CHECK-NEXT:     `-RecordType {{.*}} 'a::S'
}