mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2025-03-05 23:37:23 +00:00
12 lines
292 B
Rust
12 lines
292 B
Rust
|
use lofty::aac::AacFile;
|
||
|
use lofty::config::ParseOptions;
|
||
|
use lofty::file::AudioFile;
|
||
|
|
||
|
#[test]
|
||
|
fn panic1() {
|
||
|
let mut reader = crate::get_reader(
|
||
|
"aacfile_read_from/01 - aalborg_IDX_9_RAND_168952727934877251846138.mp3",
|
||
|
);
|
||
|
let _ = AacFile::read_from(&mut reader, ParseOptions::new());
|
||
|
}
|