summaryrefslogtreecommitdiff
path: root/src/tests/efl_mono/dummy_test_iface.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/efl_mono/dummy_test_iface.eo')
-rw-r--r--src/tests/efl_mono/dummy_test_iface.eo16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tests/efl_mono/dummy_test_iface.eo b/src/tests/efl_mono/dummy_test_iface.eo
index a7a761fef7..068b1352bd 100644
--- a/src/tests/efl_mono/dummy_test_iface.eo
+++ b/src/tests/efl_mono/dummy_test_iface.eo
@@ -25,6 +25,22 @@ interface Dummy.Test_Iface
return: int;
}
+ @property protected_prop @protected {
+ get {}
+ set {}
+ values {
+ data: int;
+ }
+ }
+
+ @property public_getter_private_setter {
+ get {}
+ set @protected {}
+ values {
+ data: int;
+ }
+ }
+
}
events {
nonconflicted: void;