error: `const` keyword was mistyped as `Const` --> $DIR/typod-const-in-const-param-def.rs:1:12 | LL | pub fn foo() {} | ^^^^^ | help: use the `const` keyword (notice the capitalization difference) | LL - pub fn foo() {} LL + pub fn foo() {} | error: `const` keyword was mistyped as `Const` --> $DIR/typod-const-in-const-param-def.rs:7:12 | LL | pub fn baz() {} | ^^^^^ | help: use the `const` keyword (notice the capitalization difference) | LL - pub fn baz() {} LL + pub fn baz() {} | error: `const` keyword was mistyped as `Const` --> $DIR/typod-const-in-const-param-def.rs:10:15 | LL | pub fn qux() {} | ^^^^^ | help: use the `const` keyword (notice the capitalization difference) | LL - pub fn qux() {} LL + pub fn qux() {} | error: `const` keyword was mistyped as `Const` --> $DIR/typod-const-in-const-param-def.rs:13:16 | LL | pub fn quux() {} | ^^^^^ | help: use the `const` keyword (notice the capitalization difference) | LL - pub fn quux() {} LL + pub fn quux() {} | error: aborting due to 4 previous errors