Revert "Revert "[code vision] IDEA-308383: add tests""

This reverts commit 2431e8827ad5eebd3b291007fd08847bd4d0691d.

GitOrigin-RevId: f8eae4a8f86970e7184d12bf4f9b40a9cc3f725f
This commit is contained in:
Alexandr Suhinin
2023-03-08 17:33:17 +02:00
committed by intellij-monorepo-bot
parent a4418b235a
commit 4e254303d0
9 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
class ExternalUsage {
void foo(){
Test.test();
}
}

View File

@@ -0,0 +1,10 @@
class Test {
void use() {
test();
test();
}
public static void test<caret>() {
}
}