Skip to content

Commit 3e85b6f

Browse files
committed
[lldb][NFC] Check in crashing test case
llvm-svn: 367307
1 parent e4d5423 commit 3e85b6f

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)