summaryrefslogtreecommitdiff
path: root/test/lsp/multidef.cpp
blob: b9511d016180a872c833d2b5c5a69c2f14e9ed69 (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
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) {
	}
}