File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ import MemberwiseInitializer
4
4
5
5
let structPrivateOnly = StructPrivateOnly ( varPrivate: 42 ) // expected-error {{argument passed to call that takes no arguments}}
6
6
let structPublicOnly = StructPublicOnly ( varPublic: 42 )
7
- let structEmptyPrivateSetion = StructEmptyPrivateSection ( varPublic: 42 )
7
+ let structEmptyPrivateSection = StructEmptyPrivateSection ( varPublic: 42 )
8
8
let structPublicAndPrivate1 = StructPublicAndPrivate ( varPublic: 42 ) // expected-error {{argument passed to call that takes no arguments}}
9
9
let structPublicAndPrivate2 = StructPublicAndPrivate ( varPublic: 42 , varPrivate: 23 ) // expected-error {{argument passed to call that takes no arguments}}
10
10
let structWithUnimportedMemberFunction = StructWithUnimportedMemberFunction ( varPublic: 42 )
11
11
12
12
let classPrivateOnly = ClassPrivateOnly ( varPrivate: 42 ) // expected-error {{argument passed to call that takes no arguments}}
13
13
let classPublicOnly = ClassPublicOnly ( varPublic: 42 )
14
- let classEmptyPublicSetion = ClassEmptyPublicSection ( varPrivate: 42 ) // expected-error {{argument passed to call that takes no arguments}}
14
+ let classEmptyPublicSection = ClassEmptyPublicSection ( varPrivate: 42 ) // expected-error {{argument passed to call that takes no arguments}}
15
15
let classPublicAndPrivate1 = ClassPrivateAndPublic ( varPublic: 23 ) // expected-error {{argument passed to call that takes no arguments}}
16
16
let classPublicAndPrivate2 = ClassPrivateAndPublic ( varPrivate: 42 , varPublic: 23 ) // expected-error {{argument passed to call that takes no arguments}}
17
17
let classWithUnimportedMemberFunction = ClassWithUnimportedMemberFunction ( varPublic: 42 )
You can’t perform that action at this time.
0 commit comments