repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
conv11.C
blob
f08e756a3ee0bdea4858f9ba14ee93424c538a86
1
int i;
2
struct A
3
{
4
template <class T> operator T&() { return i; } // { dg-message "note" }
5
};
6
7
int main()
8
{
9
A().operator int(); // { dg-error "operator int" }
10
// { dg-message "(candidate|mismatched types)" "candidate note" { target *-*-* } 9 }
11
}