pascalabcnet/TestSuite/attributes2.pas
Бондарев Иван 24dd7a8f94 fix #2322
fix #2323
2020-10-18 13:41:10 +02:00

14 lines
197 B
ObjectPascal

//nopabcrtl
uses NUnitABC;
type TClass = class
public
[Test, Combinatorial]
static procedure TestPrime4([ValuesAttribute(1,2,3,4)] a: real);
begin
end;
end;
begin
TClass.TestPrime4(2);
end.