-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Certain combination of inout
member func, as
and non-last non-moved use doesn't compile UFCS
#414
Comments
inout
member func, as
and last use std::move
doesn't compile UFCSinout
member func, as
and non-last non-moved use doesn't compile UFCS
That's because template< typename C, typename X >
requires std::is_same_v<C, X>
auto as( X const& x ) -> decltype(auto) {
return x;
}
// Missing overload:
template< typename C, typename X >
requires std::is_same_v<C, X>
auto as( X& x ) -> decltype(auto) {
return x;
}
template< typename C, typename X >
requires std::is_base_of_v<C, X>
auto as( X&& x ) -> C&& {
return CPP2_FORWARD(x);
}
template< typename C, typename X >
requires (std::is_base_of_v<X, C> && !std::is_same_v<C,X>)
auto as( X& x ) -> C& {
return Dynamic_cast<C&>(x);
}
template< typename C, typename X >
requires (std::is_base_of_v<X, C> && !std::is_same_v<C,X>)
auto as( X const& x ) -> C const& {
return Dynamic_cast<C const&>(x);
} |
There seems to be also other problems with down casting with 'operator as'. Example: https://cpp2.godbolt.org/z/qz4cqj93d
Call 1, 2 and 3 give no problems. Call 4 has problems with the move
The move basically makes this a const& call. Adding inout on the calling side did not work If we hack this without the move: https://cpp2.godbolt.org/z/ssa9473vs
we get
So it has now problems with the
But then it tries to return a non reference value. A version that works is:
We would need to define the return type C based on the type X. Is there a function in the standard that does this? |
See #466 (comment).
See #396 (comment) for more hacks.
There's C++23's
According to https://cpp2.godbolt.org/z/8rPdrhnWs,
|
I took a look at std::forward_like but it does not work in our case. Having an implicit cast in there breaks it for our case. It is simple to provide a It might be possible to remove the versions with This compiles now with the version in #501.
|
With the newest update, I took another look at the example I provided. I removed the References. I also shortened it a little bit.
Should I put this in a regression test? |
Definitely! |
What is the best way to generate the result files for the regression tests? I added the file in regression-tests/pure2-types-down-upcast.cpp2. Your cmake project pics this up and runs the generation. I added then the result files under regression-tests/test-results. Now the test system tries to compare it and build it but I get a failure without any specifics:
My next question would be how to generate the outputs for the compilers and how to force the comparison with gcc-10 (I have gcc-12 installed.) |
That means the code generated by
See https://github.com/modern-cmake/cppfront#developers.
You would need to use modern-cmake/cppfront#88. |
Thanks, I actually forgot to look at the cmake repository description. I updated the merge request with the regression test. |
Cpp1 compilation fails on exact combination:
inout this
member function, cast withas
, and non-last use withoutstd::move
.Code to Reproduce
Command lines
cppfront/cppfront $1.cpp2 -p
clang++-15 -Icppfront/include $1.cpp -std=c++20 -o $1
Expected result - what you expected to happen
Compiled code or diagnostic on wrong usage
Actual result/error
Additional context
I encountered this writing bigger example, so didn't figured out root cause yet.
But I reduced it to combination of 3 elements. Removing any 1 of them make it work.
s.foo()
instead of(s as S).foo()
, but that's what I was testing in first place. Butcpp2::as_
template could be first suspect.inout
on member function (proved by const_foo compiling without problem)move
, but failing on regular use.Last one I found important, since last use getting special treatment, and tests usually do something only once, so they usually test last-use move, and not regular one.
Also it's totally possible that I just wrote something silly, and this is expected for this combination.
The text was updated successfully, but these errors were encountered: