Lines Matching refs:variant
39 using V = std::variant<int, const long>; in test_const_lvalue_get()
46 using V = std::variant<int, const long>; in test_const_lvalue_get()
53 using V = std::variant<int, const long>; in test_const_lvalue_get()
60 using V = std::variant<int, const long>; in test_const_lvalue_get()
69 using V = std::variant<int &>; in test_const_lvalue_get()
76 using V = std::variant<int &&>; in test_const_lvalue_get()
83 using V = std::variant<const int &&>; in test_const_lvalue_get()
94 using V = std::variant<int, const long>; in test_lvalue_get()
101 using V = std::variant<int, const long>; in test_lvalue_get()
109 using V = std::variant<int &>; in test_lvalue_get()
116 using V = std::variant<const int &>; in test_lvalue_get()
123 using V = std::variant<int &&>; in test_lvalue_get()
130 using V = std::variant<const int &&>; in test_lvalue_get()
141 using V = std::variant<int, const long>; in test_rvalue_get()
148 using V = std::variant<int, const long>; in test_rvalue_get()
156 using V = std::variant<int &>; in test_rvalue_get()
163 using V = std::variant<const int &>; in test_rvalue_get()
170 using V = std::variant<int &&>; in test_rvalue_get()
178 using V = std::variant<const int &&>; in test_rvalue_get()
190 using V = std::variant<int, const long>; in test_const_rvalue_get()
197 using V = std::variant<int, const long>; in test_const_rvalue_get()
205 using V = std::variant<int &>; in test_const_rvalue_get()
212 using V = std::variant<const int &>; in test_const_rvalue_get()
219 using V = std::variant<int &&>; in test_const_rvalue_get()
227 using V = std::variant<const int &&>; in test_const_rvalue_get()
241 using V = std::variant<int, long>; in test_throws_for_all_value_categories()