summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/annotationsinheritance2/annotationsinheritance2.sd
blob: effefb1f3409818c0b6a55a8301bbf53c2acfcd5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search annotationsinheritance2 {

  document annotationsinheritance2 {
  
  annotation g {
    field gfoo type string { }
  }

  annotation f {
  }

  annotation e inherits d {
  }


  annotation d inherits c {
  }

  annotation c {
    field cfoo type int { }
  }

  annotation b inherits a {
  }

  annotation a {
  }

  }

}