summaryrefslogtreecommitdiff
path: root/src/tests/eolian/data/base.eo
blob: 59560142c8601c21718a8f92dd73d9fba273cb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Base {
   methods {
      constructor {
      }
      destructor {
      }
   }
   implements {
      @virtual .constructor;
   }
   constructors {
      .constructor;
   }
}