We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e70bdf commit 33b8ea3Copy full SHA for 33b8ea3
test/SILGen/Inputs/objc_dynamic_replacement.swift
@@ -0,0 +1,19 @@
1
+import Foundation
2
+
3
+@objc protocol Proto {
4
+ func implicitObjCMethod()
5
+}
6
7
+class Object : Proto {
8
+ func implicitObjCMethod() {}
9
10
+ @objc dynamic
11
+ func objCMethod() {}
12
13
14
+ var objcProperty : Int {
15
+ return 0
16
+ }
17
18
+ var objcProperty2 : Int = 0
19
0 commit comments