Home
last modified time | relevance | path

Searched refs:by_value_a (Results 1 – 1 of 1) sorted by relevance

/external/llvm-project/clang/test/SemaCXX/
Dcxx2a-consteval.cpp284 consteval int by_value_a(A a) { return a.ret_i(); } in by_value_a() function
307 { int k = by_value_a(A()); } in test()
315 { int k = by_value_a(A().ret_a()); } in test()
316 { int k = by_value_a(to_lvalue_ref(std::move(a))); } in test()
341 consteval int by_value_a(A a) { return a.ret_i(); } in by_value_a() function
365 { int k = by_value_a(A()); } in test()
373 { int k = by_value_a(A().ret_a()); } in test()
374 { int k = by_value_a(to_lvalue_ref(static_cast<const A&&>(a))); } in test()