[ create a new paste ] login | about

Link: http://codepad.org/MGOluYsu    [ raw code | output | fork ]

C++, pasted on Aug 24:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>

using namespace std;

void foo(const string&)
{
  cout << "string" << endl;
}

void foo(bool)
{
  cout << "bool" << endl;
}

int main(int argc, char* argv[])
{
  foo(true);
  foo(string("Preved"));
  foo("Preved");
  return 0;
}


Output:
1
2
3
bool
string
bool


Create a new paste based on this one


Comments: