1 // RUN: %clang_cc1 -triple m68k-linux-gnu -fsyntax-only %s 2 3 class A { 4 public: member()5 void __attribute__((m68k_rtd)) member() {} 6 }; 7 test()8 void test() { 9 A a; 10 a.member(); 11 12 auto f = [](int b) __attribute__((m68k_rtd)) {}; 13 f(87); 14 }; 15