summaryrefslogtreecommitdiff
path: root/valadoc
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2019-10-10 11:13:08 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2019-10-10 11:13:08 +0200
commit774f69bc659556e936cd2cd1bbf482da2c60d6e8 (patch)
treec271aefe9885bcad2cc6e898b3f75d514a9b2089 /valadoc
parentf413cb32470d9c2598416772bc0166c6f974ec9f (diff)
downloadvala-774f69bc659556e936cd2cd1bbf482da2c60d6e8.tar.gz
valadoc/tests: Use type for property which is compatible with owned getter
Diffstat (limited to 'valadoc')
-rw-r--r--valadoc/tests/drivers/api-test.data.vapi6
1 files changed, 3 insertions, 3 deletions
diff --git a/valadoc/tests/drivers/api-test.data.vapi b/valadoc/tests/drivers/api-test.data.vapi
index c23ca2979..ec791b462 100644
--- a/valadoc/tests/drivers/api-test.data.vapi
+++ b/valadoc/tests/drivers/api-test.data.vapi
@@ -57,7 +57,7 @@ public class TestClassGlobal {
public static void static_method ();
public int property_1 { get; set; }
public int property_2 { get; }
- public int property_3 { owned get; set; }
+ public string property_3 { owned get; set; }
public delegate int Foo ();
public signal int sig_1 ();
}
@@ -70,7 +70,7 @@ public interface TestInterfaceGlobal {
public static void static_method ();
public int property_1 { get; set; }
public int property_2 { get; }
- public int property_3 { owned get; set; }
+ public string property_3 { owned get; set; }
public delegate int Foo ();
public signal int sig_1 ();
}
@@ -87,7 +87,7 @@ public struct TestStructGlobal {
public const int constant;
public int property_1 { get; set; }
public int property_2 { get; }
- public int property_3 { owned get; set; }
+ public string property_3 { owned get; set; }
}