Ticket #10662: scratch.cpp

File scratch.cpp, 101 bytes (added by beeblebrox42@…, 8 years ago)

Simple test case demonstrating issue in clang 3.0: clang++ -std=c++11 scratch.cpp

Line 
1#include <boost/signals2/signal.hpp>
2
3int main()
4{
5 boost::signals2::signal<void()> s;
6 s();
7}