summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30920-indent-off.cpp
blob: f9eccdb8fd4c5a6ccf5bc5cd37927824b2bf8484 (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
struct X
{
   void operator-(int);
   void operator+(int);
   void operator()();
};
/* *INDENT-OFF* */
  struct Y {
    void operator-(int){}


   void operator+(int){}  \
    void operator()(){}

     void func() {
	 			auto x = "	test\t 	 	 		...   ???";}
  };
/* *INDENT-ON* */
struct Y
{
   void operator-(int){}
   void operator+(int){}
   void operator()(){}
   void func()
   {
      auto x = "	test\t 	 	 		...   ???";
   }
};