Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
llvm-project
/
clang
/
test
/
CXX
/
expr
/
expr.post
/
expr.static.cast
/
p7.cpp
blob: fd8e478b5193ba0afe8c2481bff98c1ac02e2f7c [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=c++1z -verify %s -fcxx-exceptions
void
(*
p
)()
noexcept
;
void
(*
q
)();
void
f
()
{
// FIXME: This seems like a bad rule.
p
=
static_cast
<
decltype
(
p
)>(
q
);
// expected-error {{not allowed}}
q
=
static_cast
<
decltype
(
q
)>(
p
);
}