summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/missing-std-include-2.C
blob: 51c604a9f1e2afc667a244e566d41cd34f5c78f1 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* Example of fix-it hints that add #include directives,
   adding them after a pre-existing #include.  */

/* { dg-options "-fdiagnostics-generate-patch" } */

/* This is padding (to avoid the generated patch containing DejaGnu
   directives).  */

#include "empty.h"

namespace std
{
  extern int sprintf (char *dst, const char *format, ...);
};

void test (void)
{
  std::string s ("hello world"); // { dg-error ".string. is not a member of .std." }
  // { dg-message ".std::string. is defined in header .<string>.; did you forget to .#include <string>.?" "" { target *-*-* } .-1 }

  std::cout << 10; // { dg-error ".cout. is not a member of .std." }
  // { dg-message ".std::cout. is defined in header .<iostream>.; did you forget to .#include <iostream>.?" "" { target *-*-* } .-1 }
}

/* Same again, to test idempotency of the added "#include" fix-it.  */

void test_2 (void)
{
  std::string s ("hello again"); // { dg-error ".string. is not a member of .std." }
  // { dg-message ".std::string. is defined in header .<string>.; did you forget to .#include <string>.?" "" { target *-*-* } .-1 }

  std::cout << 10; // { dg-error ".cout. is not a member of .std." }
  // { dg-message ".std::cout. is defined in header .<iostream>.; did you forget to .#include <iostream>.?" "" { target *-*-* } .-1 }
}

/* Verify the output from -fdiagnostics-generate-patch.
   We expect the patch to begin with a header, containing this
   source filename, via an absolute path.
   Given the path, we can only capture it via regexps.  */
/* { dg-regexp "\\-\\-\\- .*" } */
/* { dg-regexp "\\+\\+\\+ .*" } */

/* Verify the hunks within the patch.
   Use #if 0/#endif rather than comments, to allow the text to contain
   a comment.
   We expect a "#include <string>" and "#include <iostream>" to each have been
   added once, immediately below the last #include.  */
#if 0
{ dg-begin-multiline-output "" }
@@ -7,6 +7,8 @@
    directives).  */
 
 #include "empty.h"
+#include <string>
+#include <iostream>
 
 namespace std
 {
{ dg-end-multiline-output "" }
#endif