summaryrefslogtreecommitdiff
path: root/test/files/pos/trait_fields_static_fwd.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/trait_fields_static_fwd.scala')
-rw-r--r--test/files/pos/trait_fields_static_fwd.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/trait_fields_static_fwd.scala b/test/files/pos/trait_fields_static_fwd.scala
new file mode 100644
index 0000000000..af2cdad9ff
--- /dev/null
+++ b/test/files/pos/trait_fields_static_fwd.scala
@@ -0,0 +1,10 @@
+trait T {
+ // Need to mark the synthesized member in the object's module class as notPROTECTED,
+ // since the trait member will receive this flag later.
+ // If we don't add notPROTECTED to the synthesized one, the member will not be seen as overriding the trait member.
+ // Therefore, addForwarders's call to membersBasedOnFlags would see the deferred member in the trait,
+ // instead of the concrete (desired) one in the class, and thus not create the static forwarder.
+ protected val propFilename: String = "/"
+}
+
+object P extends T