2022-05-05 15:12:52 +01:00
|
|
|
error: attempted to include a large file
|
2024-02-27 15:25:18 +01:00
|
|
|
--> tests/ui-toml/large_include_file/large_include_file.rs:13:43
|
2022-05-05 15:12:52 +01:00
|
|
|
|
|
|
|
|
LL | const TOO_BIG_INCLUDE_BYTES: &[u8; 654] = include_bytes!("too_big.txt");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the configuration allows a maximum size of 600 bytes
|
2022-09-22 20:04:22 +04:00
|
|
|
= note: `-D clippy::large-include-file` implied by `-D warnings`
|
2023-08-01 14:02:21 +02:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::large_include_file)]`
|
2022-05-05 15:12:52 +01:00
|
|
|
|
|
|
|
error: attempted to include a large file
|
2024-10-30 20:41:34 +01:00
|
|
|
--> tests/ui-toml/large_include_file/large_include_file.rs:15:35
|
2022-05-05 15:12:52 +01:00
|
|
|
|
|
|
|
|
LL | const TOO_BIG_INCLUDE_STR: &str = include_str!("too_big.txt");
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the configuration allows a maximum size of 600 bytes
|
|
|
|
|
2024-10-30 20:41:34 +01:00
|
|
|
error: attempted to include a large file
|
|
|
|
--> tests/ui-toml/large_include_file/large_include_file.rs:18:1
|
|
|
|
|
|
|
|
|
LL | #[doc = include_str!("too_big.txt")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the configuration allows a maximum size of 600 bytes
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2022-05-05 15:12:52 +01:00
|
|
|
|