mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
A parse-only option is needed for parse performance tracking and the current option also includes semantic analysis.
38 lines
1.0 KiB
Swift
38 lines
1.0 KiB
Swift
// RUN: %target-typecheck-verify-swift
|
|
|
|
// Simple struct types
|
|
struct X1 {
|
|
static var AnX1 = X1()
|
|
static var NotAnX1 = 42
|
|
}
|
|
|
|
func acceptInOutX1(_ x1: inout X1) { }
|
|
|
|
var x1: X1 = .AnX1
|
|
x1 = .AnX1
|
|
x1 = .NotAnX1 // expected-error{{member 'NotAnX1' in 'X1' produces result of type 'Int', but context expects 'X1'}}
|
|
|
|
// Delayed identifier expressions as lvalues
|
|
(.AnX1 = x1)
|
|
acceptInOutX1(&(.AnX1))
|
|
|
|
// Generic struct types
|
|
struct X2<T> {
|
|
static var AnX2 = X2() // expected-error{{static stored properties not supported in generic types}}
|
|
static var NotAnX2 = 0 // expected-error {{static stored properties not supported in generic types}}
|
|
}
|
|
|
|
var x2: X2<Int> = .AnX2
|
|
x2 = .AnX2 // reference to isInvalid() decl.
|
|
x2 = .NotAnX2 // expected-error{{member 'NotAnX2' in 'X2<Int>' produces result of type 'Int', but context expects 'X2<Int>'}}
|
|
|
|
// Static variables through operators.
|
|
struct Foo {
|
|
static var Bar = Foo()
|
|
static var Wibble = Foo()
|
|
}
|
|
|
|
func & (x: Foo, y: Foo) -> Foo { }
|
|
|
|
var fooValue: Foo = .Bar & .Wibble
|