Sign in
llvm
/
llvm-project
/
a58dcc5e08665f2d58a28c9d4510cf94de6ed3bf
/
.
/
lldb
/
test
/
API
/
commands
/
expression
/
ignore-artificial-constructors
/
main.cpp
blob: 16ddeb1bc081877b5c5cf3b2df9b60e7ed07c096 [
file
] [
log
] [
blame
]
struct
Foo
{
// Triggers that we emit an artificial constructor for Foo.
virtual
~
Foo
()
=
default
;
};
int
main
()
{
Foo
f
;
// Try to construct foo in our expression.
return
0
;
//%self.expect_expr("Foo()", result_type="Foo", result_children=[])
}