Skip to content

Commit a241d8e

Browse files
committed
add missing public keyword
1 parent e3d26cd commit a241d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/rust-analyzer/crates/ide-assists/src/handlers/convert_named_struct_to_tuple_struct.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ impl A {
356356
}"#,
357357
r#"
358358
struct Inner;
359-
struct A(Inner);
359+
pub struct A(Inner);
360360
361361
impl A {
362362
fn new(inner: Inner) -> A {

0 commit comments

Comments
 (0)