mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 09:16:05 +00:00
13 lines
239 B
C++
13 lines
239 B
C++
// RUN: %clang_cc1 %s -std=c++11 -ast-dump -ast-dump-filter AutoVar | FileCheck %s
|
|
|
|
namespace {
|
|
class foo {
|
|
};
|
|
}
|
|
|
|
#pragma GCC visibility push(hidden)
|
|
auto AutoVar = foo();
|
|
|
|
// CHECK: VarDecl {{.*}} AutoVar
|
|
// CHECK-NOT: VisibilityAttr
|