repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[flang][cuda] Adapt ExternalNameConversion to work in gpu module (#117039)
[llvm-project.git]
/
clang
/
test
/
AST
/
dynamic-alloc-lvalue.cpp
blob
2a426638d0b79307eeac286423dc43e887722787
1
// RUN: %clang_cc1 -emit-pch -o %t %s
2
3
// Test that serialization/deserialization of a DynamicAllocLValue
4
// variant of APValue does not crash.
5
6
#ifndef HEADER
7
#define HEADER
8
9
struct
A
{
int
*
p
; };
10
const
A
&
w
=
A
{
new
int
(
10
) };
11
12
#endif