Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
resolve
/
issue-23305.rs
blob: 6d7fe7c50a230a80447186611e7a8c0b0d56e904 [
file
] [
log
] [
blame
] [
edit
]
pub
trait
ToNbt
<
T
>
{
fn
new
(
val
:
T
)
->
Self
;
}
impl
dyn
ToNbt
<
Self
>
{}
//~^ ERROR `Self` is not valid in the self type of an impl block
fn
main
()
{}