Commit 65af76a2 authored by zeiss's avatar zeiss
Browse files

No commit message

No commit message
parent 094dac06
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 61 $
 ** @purpose  1:8.2.2, Ensure that a definition within a group is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/


module Syn_080202_GroupOfDefinitions_001 {
	group TYPEDEF_GROUP {
		group RECORDS_GROUP {
			public type record MyRecord1 {
				integer      field1, 
				charstring   field2 
			}
		}
	}
}
+17 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 61 $
 ** @purpose  1:8.2.2, Ensure that a definition within a nested group is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/


module Syn_080202_GroupOfDefinitions_001 {
	group MY_TYPEDEF_GROUP {
		
		public type record MyRecord1 {
			integer      field1, 
			charstring   field2 
		}
	}
}
+16 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 61 $
 ** @purpose  1:8.2.2, Ensure that a definition within a group with public visibility modifier is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/


module Syn_080202_GroupOfDefinitions_003 {
	public group TYPEDEF_GROUP {
		public type record MyRecord1 {
			integer      field1, 
			charstring   field2 
		}
	}
}
+18 −0
Original line number Diff line number Diff line
/*****************************************************************
 ** @author   STF 409
 ** @version  $Rev: 61 $
 ** @purpose  1:8.2.2, Ensure that a definition within a group with public visibility modifier and attributes is accepted.
 ** @verdict  pass accept, noexecution
 *****************************************************************/


module Syn_080202_GroupOfDefinitions_004 {
	public group TYPEDEF_GROUP {
		public type record MyRecord1 {
			integer      field1, 
			charstring   field2 
		}
	} with {
		encode "Encoding 3";
	}
}