• Home
  • Raw
  • Download

Lines Matching full:because

23 …int (*A)(void *) = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter…  in Decls()
24 …int (*B)(void *) = Foo; //expected-error{{cannot take address of function 'Foo' because parameter … in Decls()
26 …type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has p… in Decls()
27 …type 'int (void *)'}} expected-note@6{{candidate address cannot be taken because parameter 1 has p… in Decls()
29 …int (*E)(void *) = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because in Decls()
30 …ype 'int (void *)'}} expected-note@11{{candidate address cannot be taken because parameter 1 has p… in Decls()
32 …int (*G)(void *) = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because in Decls()
33 …ype 'int (void *)'}} expected-note@18{{candidate address cannot be taken because parameter 1 has p… in Decls()
38 …A = &Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_obj… in Assigns()
39 …A = Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has pass_obje… in Assigns()
41 …ded function type>'}} expected-note@6{{candidate address cannot be taken because parameter 1 has p… in Assigns()
42 …ded function type>'}} expected-note@6{{candidate address cannot be taken because parameter 1 has p… in Assigns()
44 …A = &Statics::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has… in Assigns()
45 …ed function type>'}} expected-note@11{{candidate address cannot be taken because parameter 1 has p… in Assigns()
48 …M = &Members::Foo; //expected-error{{cannot take address of function 'Foo' because parameter 1 has… in Assigns()
49 …ed function type>'}} expected-note@18{{candidate address cannot be taken because parameter 1 has p… in Assigns()
68 …ype 'int (void *)'}} expected-note@56{{candidate address cannot be taken because parameter 1 has p… in Decls()
69 …atch required type}} expected-note@62{{candidate address cannot be taken because parameter 1 has p… in Decls()
74 …ed function type>'}} expected-note@56{{candidate address cannot be taken because parameter 1 has p… in Assigns()
75 …atch required type}} expected-note@62{{candidate address cannot be taken because parameter 1 has p… in Assigns()
98 …TakeFn(ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 h… in Check()
99 …TakeFn(&ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 … in Check()
100 …TakeFn(*ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 … in Check()
101 …TakeFn(*****ObjSize); //expected-error{{cannot take address of function 'ObjSize' because paramete… in Check()
102 …TakeFn(*****&ObjSize); //expected-error{{cannot take address of function 'ObjSize' because paramet… in Check()
104 …****ObjSize; //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has p… in Check()
105 …P = ****ObjSize; //expected-error{{cannot take address of function 'ObjSize' because parameter 2 h… in Check()
107 …TakeFn((ObjSize)); //expected-error{{cannot take address of function 'ObjSize' because parameter 2… in Check()
108 …TakeFn((void*)ObjSize); //expected-error{{cannot take address of function 'ObjSize' because parame… in Check()
109 …*)ObjSize)); //expected-error{{cannot take address of function 'ObjSize' because parameter 2 has p… in Check()
133 …llptr); //expected-error{{cannot take address of function 'DirectAddrOf' because parameter 1 has p… in Test()
134 …matching function}} expected-note@129{{candidate address cannot be taken because parameter 1 has p… in Test()