We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7c738 commit b467717Copy full SHA for b467717
src/config/mod.rs
@@ -476,6 +476,9 @@ mod test {
476
477
#[test]
478
fn test_valid_license_template_path() {
479
+ if !crate::is_nightly_channel!() {
480
+ return;
481
+ }
482
let toml = r#"license_template_path = "tests/license-template/lt.txt""#;
483
let config = Config::from_toml(toml, Path::new("")).unwrap();
484
assert!(config.license_template.is_some());
tests/source/issue-3779/lib.rs
@@ -1,3 +1,4 @@
1
+// rustfmt-unstable: true
2
// rustfmt-config: issue-3779.toml
3
4
#[path = "ice.rs"]
tests/target/issue-3779/lib.rs
0 commit comments