forked from OSchip/llvm-project
[lldb][NFC] Check in another crashing test case
llvm-svn: 367416
This commit is contained in:
parent
0d60480737
commit
005eff04cc
|
@ -0,0 +1,3 @@
|
|||
LEVEL = ../../make
|
||||
CXX_SOURCES := main.cpp
|
||||
include $(LEVEL)/Makefile.rules
|
|
@ -0,0 +1,4 @@
|
|||
from lldbsuite.test import lldbinline
|
||||
from lldbsuite.test import decorators
|
||||
|
||||
lldbinline.MakeInlineTest(__file__, globals(), [decorators.skipIf(bugnumber="rdar://53754063")])
|
|
@ -0,0 +1,11 @@
|
|||
namespace n {
|
||||
template <class> class a {};
|
||||
template <class b> struct shared_ptr {
|
||||
template <class...>
|
||||
static void make_shared() { //%self.dbg.GetCommandInterpreter().HandleCompletion("e ", len("e "), 0, -1, lldb.SBStringList())
|
||||
typedef a<b> c;
|
||||
c d;
|
||||
}
|
||||
};
|
||||
} // namespace n
|
||||
int main() { n::shared_ptr<int>::make_shared(); }
|
Loading…
Reference in New Issue