1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
// RUN: %target-swift-frontend -enable-experimental-feature SymbolLinkageMarkers -parse-as-library -emit-sil %s -o /dev/null -verify
// REQUIRES: swift_in_compiler
@_used @_section("__TEXT,__mysection") var g0: Int = 1 // ok
struct MyStruct {
@_used @_section("__TEXT,__mysection") static var static0: Int = 1 // ok
}
struct MyStruct2 {
@_section("__TEXT,__mysection") var member0: Int = 1 // expected-error {{properties with attribute '_section' must be static}}
@_section("__TEXT,__mysection") static var static1: Int { return 1 } // expected-error {{'@_section' must not be used on computed properties}}
}
struct MyStruct3<T> {
static var member1: Int = 1 // expected-error {{static stored properties not supported in generic types}}
@_section("__TEXT,__mysection") func foo() {} // expected-error {{attribute '_section' cannot be used in a generic context}}
}
struct MyStruct4<T> {
struct InnerStruct {
static var member2: Int = 1 // expected-error {{static stored properties not supported in generic types}}
@_section("__TEXT,__mysection") static var member3: Int = 1 // expected-error {{static stored properties not supported in generic types}}
// expected-error@-1 {{attribute '_section' cannot be used in a generic context}}
@_section("__TEXT,__mysection") func foo() {} // expected-error {{attribute '_section' cannot be used in a generic context}}
}
}
struct MyStruct5<T> {
}
extension MyStruct5 where T == Never {
@_used @_section("__TEXT,__mysection") static let static3: Int = 1 // ok
}
@_section("__TEXT,__mysection") // expected-error {{'@_section' attribute cannot be applied to this declaration}}
struct SomeStruct {}
@_section("") var g1: Int = 1 // expected-error {{@_section section name cannot be empty}}
func function() {
@_section("__TEXT,__mysection") var l0: Int = 1 // expected-error {{attribute '_section' can only be used in a non-local scope}}
l0 += 1
_ = l0
@_used var l1: Int = 1 // expected-error {{attribute '_used' can only be used in a non-local scope}}
l1 += 1
_ = l1
}
func function_with_type() {
class MyClass {
@_section("__TEXT,__mysection") static var member: Int = 1 // ok
}
do {
class MyClass {
@_section("__TEXT,__mysection") static var member: Int = 1 // ok
}
}
}
func function_with_type_generic<T>() -> T {
class MyClass { // expected-error {{type 'MyClass' cannot be nested in generic function}}
@_section("__TEXT,__mysection") static var member: Int = 1 // expected-error {{static stored properties not supported in generic types}}
// expected-error@-1 {{attribute '_section' cannot be used in a generic context}}
}
}
|