Commit 288b129f authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent ea9f2b03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ template(present) ExampleType m_baseTemplate := {

// shall be rejected as template(omit) is not an allowed restriction for template(present)
// templates
template(omit) ExampleType m_modifiedTemplate := {
template(omit) ExampleType m_modifiedTemplate modifies m_baseTemplate := {
	a := 21
}

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ template(omit) ExampleType m_baseTemplate := {

// shall be rejected as template(present) is not an allowed restriction for template(omit)
// templates
template(present) ExampleType m_modifiedTemplate := {
template(present) ExampleType m_modifiedTemplate modifies m_baseTemplate := {
	a := 21
}

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ template(value) ExampleType m_baseTemplate := {

// shall be rejected as template(present) is not an allowed restriction for template(value)
// templates
template(present) ExampleType m_modifiedTemplate := {
template(present) ExampleType m_modifiedTemplate modifies m_baseTemplate := {
	a := 21
}

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ template(value) ExampleType m_baseTemplate := {

// shall be rejected as template(present) is not an allowed restriction for template(value)
// templates
template(omit) ExampleType m_modifiedTemplate := {
template(omit) ExampleType m_modifiedTemplate modifies m_baseTemplate := {
	a := 21
}

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ template(value) ExampleType m_baseTemplate := {

// shall be rejected as template is not an allowed restriction for template(value)
// templates
template ExampleType m_modifiedTemplate := {
template ExampleType m_modifiedTemplate modifies m_baseTemplate := {
	a := 21
}

Loading