summaryrefslogtreecommitdiffstats
path: root/tests/run-make/include_bytes_deps/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make/include_bytes_deps/main.rs')
-rw-r--r--tests/run-make/include_bytes_deps/main.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/run-make/include_bytes_deps/main.rs b/tests/run-make/include_bytes_deps/main.rs
new file mode 100644
index 000000000..2fd55699d
--- /dev/null
+++ b/tests/run-make/include_bytes_deps/main.rs
@@ -0,0 +1,10 @@
+#[doc = include_str!("input.md")]
+pub struct SomeStruct;
+
+pub fn main() {
+ const INPUT_TXT: &'static str = include_str!("input.txt");
+ const INPUT_BIN: &'static [u8] = include_bytes!("input.bin");
+
+ println!("{}", INPUT_TXT);
+ println!("{:?}", INPUT_BIN);
+}