mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
29 lines
503 B
Rust
29 lines
503 B
Rust
//@ known-bug: rust-lang/rust#126272
|
|
|
|
#![feature(adt_const_params)]
|
|
#![allow(incomplete_features)]
|
|
|
|
use std::marker::ConstParamTy;
|
|
|
|
#[derive(Debug, PartialEq, Eq, ConstParamTy)]
|
|
struct Foo {
|
|
value: i32,
|
|
nested: &'static Bar<std::fmt::Debug>,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq, Eq, ConstParamTy)]
|
|
struct Bar<T>(T);
|
|
|
|
struct Test<const F: Foo>;
|
|
|
|
fn main() {
|
|
let x: Test<
|
|
{
|
|
Foo {
|
|
value: 3,
|
|
nested: &Bar(4),
|
|
}
|
|
},
|
|
> = Test;
|
|
}
|