Skip to content

Commit

Permalink
Adding private property to struct or class should trigger downstream …
Browse files Browse the repository at this point in the history
…builds.

Swift SVN r32241
  • Loading branch information
cwillmor committed Sep 25, 2015
1 parent 1a92333 commit 8639248
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions test/InterfaceHash/added_private_struct_property.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// RUN: mkdir -p %t
// RUN: %S/../../utils/split_file.py -o %t %s
// RUN: %target-swift-frontend -dump-interface-hash %t/a.swift 2> %t/a.hash
// RUN: %target-swift-frontend -dump-interface-hash %t/b.swift 2> %t/b.hash
// RUN: not cmp %t/a.hash %t/b.hash

// BEGIN a.swift
struct S {
func f2() -> Int {
return 0
}

var y: Int = 0
}

// BEGIN b.swift
struct S {
func f2() -> Int {
return 0
}

private var x: Int = 0
var y: Int = 0
}

0 comments on commit 8639248

Please sign in to comment.