Index: input/regression/context-denies-defaultchild-mod.ly |
diff --git a/input/regression/context-denies-defaultchild-mod.ly b/input/regression/context-denies-defaultchild-mod.ly |
new file mode 100644 |
index 0000000000000000000000000000000000000000..95072bde4af45f12154758455ccb0fb6b4fa0ef7 |
--- /dev/null |
+++ b/input/regression/context-denies-defaultchild-mod.ly |
@@ -0,0 +1,38 @@ |
+\version "2.19.80" |
+ |
+\header { |
+ texidoc = "@code{\\denies} @var{context} in a @code{\\with} block cancels |
+a prior @code{\\defaultchild} @var{context}. CREATED should appear in the |
+left margin." |
+} |
+ |
+\layout { |
+ \context { |
+ \Score |
+ \accepts "AdHocStaff" |
+ } |
+ |
+ \context { |
+ \Staff |
+ \name "AdHocStaff" |
+ \alias Staff |
+ instrumentName = "CREATED" |
+ } |
+ |
+ \context { |
+ \Staff |
+ instrumentName = "DENIED" |
+ } |
+ |
+} |
+ |
+\new Score \with { |
+ %% If this cancelled \accepts without cancelling \defaultchild, |
+ %% Score would still accept a Staff because default children are |
+ %% implicitly accepted with the highest priority. |
+ \denies "Staff" |
+} << |
+ %% This builds a path of accepted contexts from Score to Voice. |
+ %% Which context it chooses tells whether \denies did its job. |
+ \context Voice s1 |
+>> |