mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
22 lines
801 B
Rust
22 lines
801 B
Rust
//! This test ICEs because the `repr(packed)` attribute
|
|
//! was generated by a proc macro, so `#[derive]` didn't see it.
|
|
//@ ignore-parallel-frontend failed to collect active jobs
|
|
//@proc-macro: proc_macro_generate_packed.rs
|
|
//@known-bug: #120873
|
|
//@ failure-status: 101
|
|
//@ normalize-stderr: "note: .*\n\n" -> ""
|
|
//@ normalize-stderr: "thread 'rustc'.*panicked.*\n" -> ""
|
|
//@ normalize-stderr: "(error: internal compiler error: [^:]+):\d+:\d+: " -> "$1:LL:CC: "
|
|
//@ normalize-stderr: "/rustc(?:-dev)?/[a-z0-9.]+/" -> ""
|
|
//@ rustc-env:RUST_BACKTRACE=0
|
|
|
|
extern crate proc_macro_generate_packed;
|
|
use proc_macro_generate_packed::proc_macro_attribute_that_generates_repr_packed;
|
|
|
|
#[derive(PartialEq)]
|
|
#[repr(C)]
|
|
#[proc_macro_attribute_that_generates_repr_packed]
|
|
struct Dealigned<T>(u8, T);
|
|
|
|
fn main() {}
|