Skip to content

Commit daae2aa

Browse files
committed
Merge remote-tracking branch 'llvm/master' into upstream-with-swift
apple-llvm-split-commit: 1bf792753dc088ce6e508990a8e17c583feed62f apple-llvm-split-dir: lldb/
2 parents 7e2c36b + 3e85b6f commit daae2aa

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
LEVEL = ../../make
2+
CXX_SOURCES := main.cpp
3+
include $(LEVEL)/Makefile.rules
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
from lldbsuite.test import lldbinline
2+
from lldbsuite.test import decorators
3+
4+
lldbinline.MakeInlineTest(__file__, globals(), [decorators.skipIf(bugnumber="rdar://53659341")])
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
namespace std {
2+
struct a {
3+
a() {}
4+
a(a &&);
5+
};
6+
template <class> struct au {
7+
a ay;
8+
~au() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
9+
}
10+
};
11+
}
12+
int main() { std::au<int>{}; }

0 commit comments

Comments
 (0)