blob: 36f62a681022148d36931eb4f5b4901cf8d51fcb [file] [log] [blame]
// RUN: %target-swift-frontend %clang-importer-sdk -parse %s -verify
// REQUIRES: objc_interop
import Foundation
class RV {
init() {
NSPrefixWordBreak2.breakBarBas.rawValue = 0 // expected-error{{cannot assign to property: 'rawValue' is immutable}}
}
}