Skip to content

Commit ee685b6

Browse files
committed
---
yaml --- r: 349531 b: refs/heads/master-next c: f681adb h: refs/heads/master i: 349529: 27998bb 349527: 417081d
1 parent d9dd84e commit ee685b6

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: 3574c513bbc5578dd9346b4ea9ab5995c5927bb5
3-
refs/heads/master-next: ed30b9f2477018676e68afd486291be42d0ef4ec
3+
refs/heads/master-next: f681adb300e567e29e491d285d6bc6c519b82653
44
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
55
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
66
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-b: 66d897bfcf64a82cb9a87f5e663d889189d06d07
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
@propertyWrapper
2+
struct Printed<Value: Codable>: Codable {
3+
var wrappedValue: Value {
4+
didSet { print(wrappedValue) }
5+
}
6+
}
7+
8+
struct Foo: Codable {
9+
@Printed var bar: Bool = false
10+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// RUN: %target-swift-frontend -c -primary-file %s %S/Inputs/property_wrappers_codable_multifile_other.swift
2+
3+
func test(_ value: Foo = Foo()) {
4+
let _: Codable = value
5+
}

0 commit comments

Comments
 (0)