summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/annotationsreference/annotationsreference.sd
blob: 11972c13c39dbef6b0f3d4343532a2d11e6ff0b3 (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
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
search annotationsreference {

  document annotationsreference {

  annotation banana {
    field brand type string { }
  }

  annotation food {
    field what type annotationreference<banana> { }
  }

  annotation cyclic {
    field blah type annotationreference<cyclic> { }
  }

  annotation a {
    field foo type annotationreference<b> { }
  }

  annotation b {
  }

  }
}