summaryrefslogtreecommitdiff
path: root/src/tests/eolian/data/scope.eo
blob: def94d1d08065d808ee9745460ee7fc11325d233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
class Scope {
   methods {
      @property a @protected {
         get {
         }
      }
      @property b {
         get {
         }
      }
      @property c {
         get {
         }
         set @protected {
         }
      }
      foo {
      }
      bar @protected {
      }
      foobar {
      }
   }
}