summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-10-18 16:20:40 +0200
committerJon Bratseth <bratseth@gmail.com>2021-10-18 16:20:40 +0200
commit42164bf6d23b411ad13dec8a4540a3450d072483 (patch)
tree290f4ab52c296244103a66f4b1be8f62f29389bb /config-model/src/test/derived
parent6f6f21414a004a967ce54ab2a0a47e29b1f8609a (diff)
Inherit constants
Diffstat (limited to 'config-model/src/test/derived')
-rwxr-xr-xconfig-model/src/test/derived/annotationsreference/annotationsreference.sd29
1 files changed, 15 insertions, 14 deletions
diff --git a/config-model/src/test/derived/annotationsreference/annotationsreference.sd b/config-model/src/test/derived/annotationsreference/annotationsreference.sd
index 11972c13c39..a0e2af3c6f5 100755
--- a/config-model/src/test/derived/annotationsreference/annotationsreference.sd
+++ b/config-model/src/test/derived/annotationsreference/annotationsreference.sd
@@ -3,24 +3,25 @@ search annotationsreference {
document annotationsreference {
- annotation banana {
- field brand type string { }
- }
+ annotation banana {
+ field brand type string { }
+ }
- annotation food {
- field what type annotationreference<banana> { }
- }
+ annotation food {
+ field what type annotationreference<banana> { }
+ }
- annotation cyclic {
- field blah type annotationreference<cyclic> { }
- }
+ annotation cyclic {
+ field blah type annotationreference<cyclic> { }
+ }
- annotation a {
- field foo type annotationreference<b> { }
- }
+ annotation a {
+ field foo type annotationreference<b> { }
+ }
- annotation b {
- }
+ annotation b {
+ }
}
+
}