blob: 5a511b673e4bf0822fcdc63739c0747c6fbe5586 [file] [log] [blame]
// AUTOMOC relaxed mode objects
#include "RObjA.hpp"
#include "RObjB.hpp"
#include "RObjC.hpp"
// Forward declaration
bool commonRelaxed();
int main(int argv, char** args)
{
// Common tests
if (!commonRelaxed()) {
return -1;
}
// Relaxed tests
RObjA rObjA;
RObjB rObjB;
RObjC rObjC;
return 0;
}