Skip to content

Commit

Permalink
add test for cv qualified vars
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdymercury authored Nov 14, 2024
1 parent 6b4b2f6 commit 36e1621
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions root/rint/TabCom_input.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,22 @@ MyCla ::fgM
MyCla ::fgPrivateM
TH1F *h = 0;
h->GetXaxis()->SetTi
struct Simple {};
Simple s;
s.
const Simple cs{};
cs.
Simple* ps = nullptr;
ps->
const Simple* pcs = nullptr;
pcs->
Simple* const cps = nullptr;
cps->
const Simple* const cpcs = nullptr;
cpcs->
volatile Simple* vs = nullptr;
vs->
const volatile Simple* cvs = nullptr;
cvs->
.q

0 comments on commit 36e1621

Please sign in to comment.