File: namespace6.cpp

package info (click to toggle)
doctest 2.4.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,436 kB
  • sloc: cpp: 13,546; python: 261; makefile: 30; sh: 1
file content (41 lines) | stat: -rw-r--r-- 817 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <doctest/doctest.h>

DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN
#include <cstdint>
#include <sstream>
DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END

namespace user6 {
struct label
{
    label()
            : i(0) {}
    int         i;
    friend bool operator==(const user6::label& lhs, const user6::label& rhs) {
        return lhs.i == rhs.i;
    }
};
} // namespace user6

namespace user7 {
struct label
{
    label()
            : i(0) {}
    int         i;
    friend bool operator==(const user7::label& lhs, const user7::label& rhs) {
        return lhs.i == rhs.i;
    }
};
} // namespace user7

TEST_CASE("namespace 6 friend vs friend") {
    user6::label a6;
    user6::label b6;

    user7::label a7;
    user7::label b7;

    REQUIRE(a6 == b6);
    REQUIRE(a7 == b7);
}