6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
8 lines
131 B
Rust
8 lines
131 B
Rust
// Issue #1763 - infer types correctly
|
|
|
|
type actor<T> = { //~ ERROR type parameter `T` is unused
|
|
unused: bool
|
|
};
|
|
|
|
fn main() {}
|