1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-04 00:54:07 +02:00
bitbuffer/bitbuffer_derive/tests/expand.rs
2020-12-05 22:48:40 +01:00

10 lines
157 B
Rust

#![allow(dead_code)]
#![allow(unreachable_patterns)]
use bitbuffer_derive::BitRead;
#[derive(BitRead)]
struct TestStruct {
foo: u8,
str: String,
}