applescriptobjc.m 266 B

12345678910111213
  1. // TEST_CONFIG OS=macosx
  2. // TEST_CFLAGS -framework AppleScriptObjC -framework Foundation
  3. // Verify that trivial AppleScriptObjC apps run with GC off.
  4. #include <Foundation/Foundation.h>
  5. #include "test.h"
  6. int main()
  7. {
  8. [NSBundle class];
  9. succeed(__FILE__);
  10. }