summaryrefslogtreecommitdiffstats
path: root/tests/language-server/ordinary-comment-hover-info.slang
blob: 83ab4ff9930b1284c4c46ee852a9001fd3977206 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//TEST:LANG_SERVER:
//HOVER:8,7
//HOVER:13,7
//HOVER:20,6

// #1: Ordindary comment for `value`.
//
int value;

/* #2: Ordinary block comment for main func.
   #3: This func doesn't return anything.
*/
void main()
{
}

enum E
{
   Red, // #4 red color
   Green, // #5 green color
}