brintos

brintos / llvm-project-archived public Read only

0
0
Text · 226 B · 31f4bce Raw
15 lines · cpp
1// RUN: %clang_cc1 -triple m68k-linux-gnu -fsyntax-only %s2 3class A {4public:5  void __attribute__((m68k_rtd)) member() {}6};7 8void test() {9  A a;10  a.member();11 12  auto f = [](int b) __attribute__((m68k_rtd)) {};13  f(87);14};15