summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2632-const-trait-impl/issue-102156.rs
blob: fe4e91081301304559a389d49f2b219b7e1f29d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(allocator_api)]
#![feature(const_trait_impl)]

use core::convert::{From, TryFrom};
//~^ ERROR
//~| ERROR

use std::pin::Pin;
use std::alloc::Allocator;
impl<T: ?Sized, A: Allocator> const From<Box<T, A>> for Pin<Box<T, A>>
where
    A: 'static,
{}

pub fn main() {}