mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 17:31:52 +00:00
14 lines
334 B
Rust
14 lines
334 B
Rust
// check-pass
|
|
// This test ensures that rustdoc does not panic on inherented associated types
|
|
// that are referred to without fully-qualified syntax.
|
|
|
|
#![feature(inherent_associated_types)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub struct Struct;
|
|
|
|
impl Struct {
|
|
pub type AssocTy = usize;
|
|
pub const AssocConst: Self::AssocTy = 42;
|
|
}
|