summaryrefslogtreecommitdiff
path: root/test/lsp/multidef.cpp
blob: da612fc2b9e60f2310323df0e30988d8b6e1b404 (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
#include <stddef.h>

class V {
	void f(int x, int y) {
	}
	
	
	void f(int x) {
	}
	
	void f(const char *s) {
	}
	
	
	void g() {
	}
	void g(int y) {
	}
}

class W {
	void f(int x, int y) {
	}
	
	
	void f(int x) {
	}
	
	void f(const char *s) {
	}
	
	
	void g() {
	}
	void g(int y) {
	}
}