summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/annotationsreference/annotationsreference.sd
blob: 568a6a1f1914a7cc96b07da3d56906e54828391f (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 2016 Yahoo Inc. 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 {
  }

  }
}