blob: d49b0b0b620f2eeabdd55de34003d27379f25a2e [file] [log] [blame]
// RUN: mkdir -p %t
// RUN: %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: cmp %t/a.hash %t/b.hash
// BEGIN a.swift
class C {
var p: Int {
return 0
}
}
// BEGIN b.swift
class C {
var p: Int {
let x = 1
return x
}
}