mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
180 B
Rust
13 lines
180 B
Rust
// run-pass
|
|
|
|
#![allow(dead_code, unused_macros)]
|
|
// aux-build:issue-39889.rs
|
|
|
|
extern crate issue_39889;
|
|
use issue_39889::Issue39889;
|
|
|
|
#[derive(Issue39889)]
|
|
struct S;
|
|
|
|
fn main() {}
|