auto-pragma.cpp 253 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // RUN: %clang_cc1 -fsyntax-only %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