brintos

brintos / llvm-project-archived public Read only

0
0
Text · 247 B · 8543af0 Raw
16 lines · cpp
1// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -verify -fsyntax-only %s2// expected-no-diagnostics3 4namespace GH76521 {5 6template <typename T>7void foo() {8  auto l = []() __attribute__((preserve_most)) {};9}10 11void bar() {12  foo<int>();13}14 15}16