mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
12 lines
326 B
Swift
12 lines
326 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: cp %s %t/main.swift
|
|
// RUN: %target-build-swift -o %t/main %t/main.swift %S/Inputs/issue-54868.swift
|
|
// RUN: %target-codesign %t/main
|
|
// RUN: %target-run %t/main
|
|
|
|
// REQUIRES: executable_test
|
|
|
|
// https://github.com/apple/swift/issues/54868
|
|
|
|
let object = MyClass()
|
|
object.property = "value" |