COBCH1619 1個の汎用パラメータが必要である

事前定義された LIST 型は、単一の汎用パラメータで指定する必要があります。
次に例を示します。
class-id myClass

01 myList1 LIST [string].      *> this is correct
01 myList2 LIST [float-short]. *> this is also correct
01 myList3 LIST [type myType]. *> this is also correct
01 myList4 LIST                *> this is incorrect - no param specified
01 myLIST5 LIST [string, float-short]  *>this also incorrect - too many params specified

...

end class.