Sign in
android
/
toolchain
/
rustc
/
54272acac043c1dedfb7db7420545b31ec1ac51f
/
.
/
src
/
test
/
ui
/
rfc-2632-const-trait-impl
/
const-trait-bound-opt-out
/
with-maybe-sized.rs
blob: c2c8689e2942bcd33ba2ad795acd56b809544537 [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_bound_opt_out
)]
#![
allow
(
incomplete_features
)]
struct
S
<
T
:
?
const
?
Sized
>(
std
::
marker
::
PhantomData
<
T
>);
//~^ ERROR `?const` and `?` are mutually exclusive
fn
main
()
{}