Following my previous question, I am attempting to compile the code from one of the answers there.
type
TSearchableObjectList<T> = class(TObjectList<T>)
end;
The compiler will not compile this and reports this error message:
[dcc32 Error]: E2511 Type parameter 'T' must be a class type
What does this error message mean, and how should I fix the code?