brintos

brintos / llvm-project-archived public Read only

0
0
Text · 204 B · f1cd4aa Raw
15 lines · cpp
1// RUN: %clang -emit-llvm -g -S %s -o - | FileCheck %s2class Class3{4public:5//CHECK: DW_TAG_const_type6    int foo (int p) const {7        return p+m_int;8    }  9 10protected:11    int m_int;12};13 14Class c;15