/+junk/vala-bit-field

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/vala-bit-field

« back to all changes in this revision

Viewing changes to src/main.vala

  • Committer: Gustav Hartvigsson
  • Date: 2020-06-05 21:05:07 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20200605210507-cf47ohzmnet3ohc4
* encountered a bug in Valac:
https://gitlab.gnome.org/GNOME/vala/-/issues/1003

This makes it so I can't continue with this in any sane way.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
int main (string[] args) {
 
2
  
 
3
  BitField.init ();
 
4
  
 
5
  BitField.FieldInfo a = {1,2,3};
 
6
  BitField.FieldInfo b = {3, 2, 1};
 
7
  
 
8
  BitField.FieldInfo.static_campare (a,b);
 
9
  
 
10
  BitField.deinit ();
 
11
  return 0;
 
12
}