blob: b77248ef4104ed8d43abc1b9be12f671029c8205 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
// <rdar://problem/8124080>
template<typename _Alloc> class allocator;
template<class _CharT> struct char_traits;
template<typename _CharT, typename _Traits = char_traits<_CharT>,
typename _Alloc = allocator<_CharT> >
class basic_string;
template<typename _CharT, typename _Traits, typename _Alloc>
const typename basic_string<_CharT, _Traits, _Alloc>::size_type
basic_string<_CharT, _Traits, _Alloc>::_Rep::_S_max_size // expected-error{{no member named '_Rep' in 'basic_string<_CharT, _Traits, _Alloc>'}}
= (((npos - sizeof(_Rep_base))/sizeof(_CharT)) - 1) / 4;
// PR7118
template<typename T>
class Foo {
class Bar;
void f() {
Bar i;
}
};
// PR7625
template<typename T> struct a : T {
struct x : T {
int aa() { return p; } // expected-error{{use of undeclared identifier 'p'}}
};
};
// rdar://8605381
namespace rdar8605381 {
struct X {};
struct Y { // expected-note{{candidate}}
Y();
};
struct {
Y obj;
} objs[] = {
new Y // expected-error{{no viable conversion}}
};
}
// http://llvm.org/PR8234
namespace PR8234 {
template<typename Signature>
class callback
{
};
template<typename R , typename ARG_TYPE0>
class callback<R( ARG_TYPE0)>
{
public:
callback() {}
};
template< typename ARG_TYPE0>
class callback<void( ARG_TYPE0)>
{
public:
callback() {}
};
void f()
{
callback<void(const int&)> op;
}
}
namespace PR9007 {
struct bar {
enum xxx {
yyy = sizeof(struct foo*)
};
foo *xxx();
};
}
namespace PR9026 {
class InfallibleTArray {
};
class Variant;
class CompVariant {
operator const InfallibleTArray&() const;
};
class Variant {
operator const CompVariant&() const;
};
void Write(const Variant& __v);
void Write(const InfallibleTArray& __v);
Variant x;
void Write2() {
Write(x);
}
}
namespace PR10270 {
template<typename T> class C;
template<typename T> void f() {
if (C<T> == 1) // expected-error{{expected unqualified-id}} \
// expected-error{{invalid '==' at end of declaration}}
return;
}
}
|