Loading a class in an internal library

Hi,

I have created a simple class in an internal library, but when I load it in an application, together with other libraries I get the following error:
Parse error: syntax error, unexpected ‘{’ in
The error points to the other library (which is obviously loaded after the class file), not the file with the class. When I remove the class, I don’t get this error. Am I right that you cannot create a class in an internal library? If not how to load a class anyway?

Regards,
Martin

I remember there were problems with this. If you want to use classes the best site is External Libs, not Internal. Internal are designed just to “unzip” the functions integrated with the app.

Thanks, I implemented an external library and it works.