Skip to content

Commit

Permalink
Merge pull request swiftlang#34029 from slavapestov/test-module-inter…
Browse files Browse the repository at this point in the history
…face-multiple-pbd

Add module interface printing test with non-trivial pattern binding initializer
  • Loading branch information
slavapestov authored Sep 23, 2020
2 parents c58457d + 4ff6cda commit a6406af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/ModuleInterface/stored-properties.swift
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ public struct BagOfVariables {
// COMMON: public let a: Swift.Int = 0
public let a: Int = 0

// COMMON: public let (x, y): (Swift.Int, Swift.Int) = (0, 0)
public let (x, y) = (0, 0)

// COMMON: public var b: Swift.Bool = false
public var b: Bool = false

Expand Down

0 comments on commit a6406af

Please sign in to comment.