1 2 3 4 5 6 7 8
use std::path::Path; #[glob_test::glob("../usage/inputs/**/*.txt")] fn test<T>(path: &Path) { let _ = std::fs::read_to_string(path).unwrap(); } fn main() {}