Sign in
cobalt
/
cobalt
/
6f9a742d28df516936362c4ae00efbea9c3b06f2
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
CodeGenCXX
/
2004-06-08-LateTemplateInstantiation.cpp
blob: 97254c18a51a8a7bc5e08c559ac246fcc36b8d0e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm %s -o -
template
<
typename
Ty
>
struct
normal_iterator
{
int
FIELD
;
};
void
foo
(
normal_iterator
<int>
);
normal_iterator
<int>
baz
();
void
bar
()
{
foo
(
baz
());
}
void
*
bar2
()
{
return
(
void
*)
foo
;
}