Lines Matching refs:Empty
39 struct Empty {}; struct
99 struct Derived : public Empty {};
159 test_true <Empty>(); in test()
191 test_not_const<void(Empty::*)(const int&) >(); in test()
192 test_not_const<void(Empty::*)(const int&) const >(); in test()
193 test_not_const<void(Empty::*)(const int&) volatile>(); in test()
194 test_not_const<void(Empty::*)(const int&) const volatile>(); in test()
195 test_not_const<void(Empty::*)(const int&) &>(); in test()
196 test_not_const<void(Empty::*)(const int&) &&>(); in test()
197 test_not_const<void(Empty::*)(const int&) noexcept>(); in test()
198 test_not_const<void(Empty::*)(const int&) noexcept(true)>(); in test()
199 test_not_const<void(Empty::*)(const int&) noexcept(false)>(); in test()