test to show include_bytes! macro supports large symlinks

This commit is contained in:
Bel LaPointe
2023-12-19 16:36:17 -05:00
parent d05287fa3d
commit 367838ac23
4 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
fn main() {
let bytes = include_bytes!("./test.txt");
println!("{}", String::from_utf8_lossy(bytes));
}