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
[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git]
/
clang
/
test
/
Sema
/
invalid-cast.cpp
blob
2183352000d67fe9ea54f6265f1b2d2510505c07
1
// RUN: %clang_cc1 -verify -fsyntax-only %s
2
// expected-no-diagnostics
3
// <rdar://problem/13153516> - This previously triggered an assertion failure.
4
template
<
class
T
>
5
struct
X
{
6
T array
;
7
};
8
9
int
foo
(
X
<
int
[
1
]>
x0
) {
10
return
x0
.
array
[
17
];
11
}