-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Open
Labels
Feature RequestLanguage ServicepostponedIn progress, but postponed in favor of other higher priority tasksIn progress, but postponed in favor of other higher priority tasks
Milestone
Description
See title, create a fresh test.c
file with the contents:
#include <stdio.h>
int main()
{
asdfd;
return 0;
}
(If) Linting is working properly, asdfd
will be underlined with squigglies as you would expect. What you would not expect is that turning it into a function call makes the squigglies go away:
#include <stdio.h>
int main()
{
asdfd();
return 0;
}
Furthermore, hovering over it produces the popup int asdfd()
, as if it was defined to return int somewhere. This is just silly.
Related to #746
Fonger, harikrishnan94, escape0707, YalandHong, NotSqrt and 24 more
Metadata
Metadata
Assignees
Labels
Feature RequestLanguage ServicepostponedIn progress, but postponed in favor of other higher priority tasksIn progress, but postponed in favor of other higher priority tasks