Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

about 5 years ago

Language

C++

Compiler

gcc 9.3.0

Options
Warnings
Boost 1.73.0
C++2a(GNU)
no pedantic

Author

anonymous

about 5 years ago

$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.73.0/gcc-9.3.0/include -std=gnu++2a
prog.cc: In function 'int main()':
prog.cc:4:32: error: no match for 'operator<<' (operand types are 'std::basic_ostream<char>' and 'std::ostream' {aka 'std::basic_ostream<char>'})
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |     ~~~~~~~~~~~~~~~~~~~~~~~~~~ ^~ ~~~~~~~~~
      |               |                        |
      |               basic_ostream<[...]>     basic_ostream<[...]>
prog.cc:4:32: note: candidate: 'operator<<(int, int)' <built-in>
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~
prog.cc:4:32: note:   no known conversion for argument 2 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'int'
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:108:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ostream_type& (*)(std::basic_ostream<_CharT, _Traits>::__ostream_type&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  108 |       operator<<(__ostream_type& (*__pf)(__ostream_type&))
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:108:36: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'std::basic_ostream<char>::__ostream_type& (*)(std::basic_ostream<char>::__ostream_type&)' {aka 'std::basic_ostream<char>& (*)(std::basic_ostream<char>&)'}
  108 |       operator<<(__ostream_type& (*__pf)(__ostream_type&))
      |                  ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:117:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__ios_type& (*)(std::basic_ostream<_CharT, _Traits>::__ios_type&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>; std::basic_ostream<_CharT, _Traits>::__ios_type = std::basic_ios<char>]'
  117 |       operator<<(__ios_type& (*__pf)(__ios_type&))
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:117:32: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'std::basic_ostream<char>::__ios_type& (*)(std::basic_ostream<char>::__ios_type&)' {aka 'std::basic_ios<char>& (*)(std::basic_ios<char>&)'}
  117 |       operator<<(__ios_type& (*__pf)(__ios_type&))
      |                  ~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:127:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& (*)(std::ios_base&)) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  127 |       operator<<(ios_base& (*__pf) (ios_base&))
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:127:30: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'std::ios_base& (*)(std::ios_base&)'
  127 |       operator<<(ios_base& (*__pf) (ios_base&))
      |                  ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:166:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long int) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  166 |       operator<<(long __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:166:23: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'long int'
  166 |       operator<<(long __n)
      |                  ~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:170:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long unsigned int) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  170 |       operator<<(unsigned long __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:170:32: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'long unsigned int'
  170 |       operator<<(unsigned long __n)
      |                  ~~~~~~~~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:174:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(bool) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  174 |       operator<<(bool __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:174:23: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'bool'
  174 |       operator<<(bool __n)
      |                  ~~~~~^~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:702,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:91:5: note: candidate: 'std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(short int) [with _CharT = char; _Traits = std::char_traits<char>]'
   91 |     basic_ostream<_CharT, _Traits>::
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:92:22: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'short int'
   92 |     operator<<(short __n)
      |                ~~~~~~^~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:181:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(short unsigned int) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  181 |       operator<<(unsigned short __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:181:33: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'short unsigned int'
  181 |       operator<<(unsigned short __n)
      |                  ~~~~~~~~~~~~~~~^~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:702,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:105:5: note: candidate: 'std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(int) [with _CharT = char; _Traits = std::char_traits<char>]'
  105 |     basic_ostream<_CharT, _Traits>::
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:106:20: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'int'
  106 |     operator<<(int __n)
      |                ~~~~^~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:192:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(unsigned int) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  192 |       operator<<(unsigned int __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:192:31: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'unsigned int'
  192 |       operator<<(unsigned int __n)
      |                  ~~~~~~~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:201:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long int) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  201 |       operator<<(long long __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:201:28: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'long long int'
  201 |       operator<<(long long __n)
      |                  ~~~~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:205:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long long unsigned int) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  205 |       operator<<(unsigned long long __n)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:205:37: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'long long unsigned int'
  205 |       operator<<(unsigned long long __n)
      |                  ~~~~~~~~~~~~~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:220:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(double) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  220 |       operator<<(double __f)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:220:25: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'double'
  220 |       operator<<(double __f)
      |                  ~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:224:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(float) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  224 |       operator<<(float __f)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:224:24: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'float'
  224 |       operator<<(float __f)
      |                  ~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:232:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(long double) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  232 |       operator<<(long double __f)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:232:30: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'long double'
  232 |       operator<<(long double __f)
      |                  ~~~~~~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:245:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(const void*) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>]'
  245 |       operator<<(const void* __p)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:245:30: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'const void*'
  245 |       operator<<(const void* __p)
      |                  ~~~~~~~~~~~~^~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:250:7: note: candidate: 'std::basic_ostream<_CharT, _Traits>::__ostream_type& std::basic_ostream<_CharT, _Traits>::operator<<(std::nullptr_t) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__ostream_type = std::basic_ostream<char>; std::nullptr_t = std::nullptr_t]'
  250 |       operator<<(nullptr_t)
      |       ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:250:18: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'std::nullptr_t'
  250 |       operator<<(nullptr_t)
      |                  ^~~~~~~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:702,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:119:5: note: candidate: 'std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>::__streambuf_type*) [with _CharT = char; _Traits = std::char_traits<char>; std::basic_ostream<_CharT, _Traits>::__streambuf_type = std::basic_streambuf<char>]'
  119 |     basic_ostream<_CharT, _Traits>::
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:120:34: note:   no known conversion for argument 1 from 'std::ostream' {aka 'std::basic_ostream<char>'} to 'std::basic_ostream<char>::__streambuf_type*' {aka 'std::basic_streambuf<char>*'}
  120 |     operator<<(__streambuf_type* __sbin)
      |                ~~~~~~~~~~~~~~~~~~^~~~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/basic_string.h:48,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/string:55,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/locale_classes.h:40,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ios_base.h:41,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ios:42,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:38,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/string_view:582:5: note: candidate: 'template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, std::basic_string_view<_CharT, _Traits>)'
  582 |     operator<<(basic_ostream<_CharT, _Traits>& __os,
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/string_view:582:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   'std::basic_ostream<char>' is not derived from 'std::basic_string_view<_CharT, _Traits>'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                        ^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/string:55,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/locale_classes.h:40,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ios_base.h:41,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ios:42,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:38,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/basic_string.h:6416:5: note: candidate: 'template<class _CharT, class _Traits, class _Alloc> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>&)'
 6416 |     operator<<(basic_ostream<_CharT, _Traits>& __os,
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/basic_string.h:6416:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   'std::ostream' {aka 'std::basic_ostream<char>'} is not derived from 'const std::__cxx11::basic_string<_CharT, _Traits, _Allocator>'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                        ^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ios_base.h:46,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ios:42,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:38,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/system_error:217:5: note: candidate: 'template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const std::error_code&)'
  217 |     operator<<(basic_ostream<_CharT, _Traits>& __os, const error_code& __e)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/system_error:217:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'const std::error_code&'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:506:5: note: candidate: 'template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, _CharT)'
  506 |     operator<<(basic_ostream<_CharT, _Traits>& __out, _CharT __c)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:506:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   deduced conflicting types for parameter '_CharT' ('char' and 'std::basic_ostream<char>')
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                        ^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:511:5: note: candidate: 'template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, char)'
  511 |     operator<<(basic_ostream<_CharT, _Traits>& __out, char __c)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:511:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'char'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:517:5: note: candidate: 'template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, char)'
  517 |     operator<<(basic_ostream<char, _Traits>& __out, char __c)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:517:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'char'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:523:5: note: candidate: 'template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, signed char)'
  523 |     operator<<(basic_ostream<char, _Traits>& __out, signed char __c)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:523:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'signed char'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:528:5: note: candidate: 'template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, unsigned char)'
  528 |     operator<<(basic_ostream<char, _Traits>& __out, unsigned char __c)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:528:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'unsigned char'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:548:5: note: candidate: 'template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const _CharT*)'
  548 |     operator<<(basic_ostream<_CharT, _Traits>& __out, const _CharT* __s)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:548:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   mismatched types 'const _CharT*' and 'std::basic_ostream<char>'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                        ^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:702,
                 from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:321:5: note: candidate: 'template<class _CharT, class _Traits> std::basic_ostream<_CharT, _Traits>& std::operator<<(std::basic_ostream<_CharT, _Traits>&, const char*)'
  321 |     operator<<(basic_ostream<_CharT, _Traits>& __out, const char* __s)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/bits/ostream.tcc:321:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'const char*'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:565:5: note: candidate: 'template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, const char*)'
  565 |     operator<<(basic_ostream<char, _Traits>& __out, const char* __s)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:565:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'const char*'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:578:5: note: candidate: 'template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, const signed char*)'
  578 |     operator<<(basic_ostream<char, _Traits>& __out, const signed char* __s)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:578:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'const signed char*'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:583:5: note: candidate: 'template<class _Traits> std::basic_ostream<char, _Traits>& std::operator<<(std::basic_ostream<char, _Traits>&, const unsigned char*)'
  583 |     operator<<(basic_ostream<char, _Traits>& __out, const unsigned char* __s)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:583:5: note:   template argument deduction/substitution failed:
prog.cc:4:40: note:   cannot convert 'std::cout' (type 'std::ostream' {aka 'std::basic_ostream<char>'}) to type 'const unsigned char*'
    4 |     std::cout << "Hello world" << std::cout << "Gautam";
      |                                   ~~~~~^~~~
In file included from /opt/wandbox/gcc-9.3.0/include/c++/9.3.0/iostream:39,
                 from prog.cc:1:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:691:5: note: candidate: 'template<class _Ostream, class _Tp> typename std::enable_if<std::__and_<std::__not_<std::is_lvalue_reference<_Tp> >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable<typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&)'
  691 |     operator<<(_Ostream&& __os, const _Tp& __x)
      |     ^~~~~~~~
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:691:5: note:   template argument deduction/substitution failed:
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream: In substitution of 'template<class _Ostream, class _Tp> typename std::enable_if<std::__and_<std::__not_<std::is_lvalue_reference<_Tp> >, std::__is_convertible_to_basic_ostream<_Ostream>, std::__is_insertable<typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type, const _Tp&, void> >::value, typename std::__is_convertible_to_basic_ostream<_Tp>::__ostream_type>::type std::operator<<(_Ostream&&, const _Tp&) [with _Ostream = std::basic_ostream<char>&; _Tp = std::basic_ostream<char>]':
prog.cc:4:40:   required from here
/opt/wandbox/gcc-9.3.0/include/c++/9.3.0/ostream:691:5: error: no type named 'type' in 'struct std::enable_if<false, std::basic_ostream<char>&>'
Exit Code:
1