[ create a new paste ] login | about

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

C++, pasted on Apr 8:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <string>

void Test(bool)
{
    std::cout << "bool";
}

void Test(const std::string&)
{
    std::cout << "std::string";
}

int main()
{
    Test("test");
}


Output:
1
bool


Create a new paste based on this one


Comments: