mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00
11 lines
163 B
Rust
11 lines
163 B
Rust
//@ check-pass
|
|
//@ proc-macro: issue-79825.rs
|
|
#![feature(trait_alias)]
|
|
|
|
extern crate issue_79825;
|
|
|
|
#[issue_79825::assert_input]
|
|
trait Alias = Sized;
|
|
|
|
fn main() {}
|