mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 18:31:04 +00:00
14 lines
204 B
C++
14 lines
204 B
C++
|
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep 'uint 1,' &&
|
||
|
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep 'uint 2,'
|
||
|
|
||
|
class A {
|
||
|
public:
|
||
|
int x;
|
||
|
protected:
|
||
|
int y;
|
||
|
private:
|
||
|
int z;
|
||
|
};
|
||
|
|
||
|
A a;
|