mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-03 00:49:38 +03:00
Add test for issue-48010
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// check-pass
|
||||
|
||||
#![crate_type = "lib"]
|
||||
|
||||
pub struct Foo;
|
||||
|
||||
pub struct Path<T: Bar> {
|
||||
_inner: T::Slice,
|
||||
}
|
||||
|
||||
pub trait Bar: Sized {
|
||||
type Slice: ?Sized;
|
||||
|
||||
fn open(_: &Path<Self>);
|
||||
}
|
||||
|
||||
impl Bar for Foo {
|
||||
type Slice = [u8];
|
||||
|
||||
fn open(_: &Path<Self>) {
|
||||
unimplemented!()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user