Release 0.41.92
[vala-gnome.git] / tests / dbus / enum-string-marshalling.vala
blob2cc764852eee8e5725d51eea80dbaf674e760508
1 [DBus (use_string_marshalling = true)]
2 public enum FooEnum {
3 BAR
6 [DBus (name = "org.example.Test")]
7 public interface Test : GLib.Object {
8 public abstract async void test1 (FooEnum e) throws DBusError;
9 public abstract void test2 (FooEnum e) throws DBusError;
10 public abstract void test3 (FooEnum e1, UnixOutputStream output_stream, FooEnum e2) throws DBusError;
11 public abstract void test4 (FooEnum e);
12 public abstract async void test5 (FooEnum e);
15 void main () {
16 // We just want to ensure compile correctness here