diff options
Diffstat (limited to 'test/SemaCXX/warn-missing-prototypes.cpp')
-rw-r--r-- | test/SemaCXX/warn-missing-prototypes.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/SemaCXX/warn-missing-prototypes.cpp b/test/SemaCXX/warn-missing-prototypes.cpp index b6ebe82..f7e8db3 100644 --- a/test/SemaCXX/warn-missing-prototypes.cpp +++ b/test/SemaCXX/warn-missing-prototypes.cpp @@ -24,3 +24,9 @@ template<typename> void h() { } // Don't warn when instantiating function templates. template void h<int>(); + +// PR9519: don't warn about friend functions. +class I { + friend void I_friend() {} +}; + |