pascalabcnet/TestSuite/attributes2.pas

14 lines
197 B
ObjectPascal
Raw Permalink Normal View History

2020-10-18 14:41:10 +03:00
//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.