You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
318 B

// 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;
}