Lines Matching refs:mvi
93 mutable volatile int mvi; member
96 auto [i,r,f,mvi] = A(); in e()
101 same<decltype(mvi), volatile int>(); in e()
106 same<decltype((mvi)), volatile int&>(); in e()
109 auto &&[i,r,f,mvi] = A(); in f()
114 same<decltype(mvi), volatile int>(); in f()
119 same<decltype((mvi)), volatile int&>(); in f()
122 const auto [i,r,f,mvi] = A(); in g()
127 … same<decltype(mvi), volatile int>(); // not 'const volatile int', per expected resolution of DRxxx in g()
132 …same<decltype((mvi)), volatile int&>(); // not 'const volatile int&', per expected resolution of D… in g()
136 auto &[i,r,f,mvi] = CA(); // type of var is 'const A &' in h()
141 … same<decltype(mvi), volatile int>(); // not 'const volatile int', per expected resolution of DRxxx in h()
146 …same<decltype((mvi)), volatile int&>(); // not 'const volatile int&', per expected resolution of D… in h()