HomeSort by relevance Sort by last modified time
    Searched refs:fwd_decl (Results 1 - 10 of 10) sorted by null

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
test_observer.hpp 19 #include <boost/test/detail/fwd_decl.hpp>
unit_test_monitor.hpp 21 #include <boost/test/detail/fwd_decl.hpp>
results_collector.hpp 23 #include <boost/test/detail/fwd_decl.hpp>
results_reporter.hpp 21 #include <boost/test/detail/fwd_decl.hpp>
framework.hpp 20 #include <boost/test/detail/fwd_decl.hpp>
unit_test_log_formatter.hpp 21 #include <boost/test/detail/fwd_decl.hpp>
unit_test_log.hpp 25 #include <boost/test/detail/fwd_decl.hpp>
execution_monitor.hpp 37 #include <boost/test/detail/fwd_decl.hpp>
unit_test_suite_impl.hpp 23 #include <boost/test/detail/fwd_decl.hpp>
  /external/clang/test/SemaCXX/
cxx1y-deduced-return-type.cpp 70 auto fwd_decl(); // expected-note 2{{here}}
72 int n = fwd_decl(); // expected-error {{function 'fwd_decl' with deduced return type cannot be used before it is defined}}
73 int k = sizeof(fwd_decl()); // expected-error {{used before it is defined}}
112 template<typename T> auto fwd_decl(); // expected-note {{declared here}}
113 int e = fwd_decl<int>(); // expected-error {{cannot be used before it is defined}}
114 template<typename T> auto fwd_decl() { return 0; } function in namespace:Templates
115 int f = fwd_decl<int>();
117 auto fwd_decl(); // expected-note {{candidate template ignored: could not match 'auto ()' against 'int ()'}}
118 int g = fwd_decl<char>()
    [all...]

Completed in 67 milliseconds