repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
deprecated-21.C
blob
7454a12c57b38350d1a9fb16dfb23bb0c4dff10c
1
// { dg-do compile { target c++11 } }
2
3
[[deprecated]] void depr_fn() {}
4
5
template <class T> void f(T) {
6
depr_fn(); // { dg-warning "deprecated" }
7
}
8
9
int main()
10
{
11
f(42);
12
}