about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0077.rs
blob: 2704bbeb4ea171e398608b4780dcf52dbd914fe7 (plain)
1
2
3
4
5
6
7
#![feature(repr_simd)]

#[repr(simd)]
struct Bad([String; 2]); //~ ERROR E0077

fn main() {
}