~vcs-imports/vala/trunk

« back to all changes in this revision

Viewing changes to tests/gir/symbol-type-csuffix.vapi-expected

  • Committer: Rico Tzschichholz
  • Date: 2022-09-12 06:29:48 UTC
  • Revision ID: git-v1:841ac8c8c963e6fe0e74f82b7880a7049704bf14
tests: Split up gir parser tests into dedicated files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
[CCode (cprefix = "Test", gir_namespace = "Test", gir_version = "1.0", lower_case_cprefix = "test_")]
 
2
namespace Test {
 
3
        [CCode (cheader_filename = "test.h", type_id = "test_foo_get_type ()")]
 
4
        public class TypeFoo : GLib.Object {
 
5
                [CCode (cname = "test_type_foo_new", has_construct_function = false)]
 
6
                public TypeFoo ();
 
7
                [CCode (cname = "test_type_foo_bar")]
 
8
                public void bar ();
 
9
        }
 
10
}