mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
7 lines
237 B
Swift
7 lines
237 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend %s -verify -O -primary-file %s %S/Inputs/lazy_properties_multi_file_2.swift -c -o %t/lazy_properties_multi_file.o
|
|
|
|
class MyClass {
|
|
var myProperty = MyGenericStruct<Int>()
|
|
}
|