mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This is usually the case. Some examples, where they layout is _not_ dependent:
```
struct S<T> {
var x: Int // no members which depend on T
}
struct S<T> {
var c: SomeClass<T> // a class reference does not depend on the layout of the class
}
```
28 KiB
28 KiB