From 5e3c2640ec6dbd3abacd28fa2826cb94f23f4e8e Mon Sep 17 00:00:00 2001 From: Chris Hellmuth Date: Wed, 10 Jun 2015 15:17:59 -0600 Subject: [PATCH] Add idempotent regression test for pub struct fields --- tests/target/structs.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/target/structs.rs b/tests/target/structs.rs index 0852b5c31990..507c9eba46bf 100644 --- a/tests/target/structs.rs +++ b/tests/target/structs.rs @@ -10,6 +10,7 @@ pub struct Foo { g: SomeOtherType, /// A doc comment on a field h: AThirdType, + pub i: TypeForPublicField, } struct Bar;