mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
[inlays] more previews for inlays with baked into text inlays
GitOrigin-RevId: 8c667c849ed00f1cc304f82e0ff7c8ec416fc395
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e123860359
commit
d05f672784
@@ -1,8 +1,8 @@
|
||||
abstract class Foo<T> {
|
||||
void main() {
|
||||
listOf(1, 2, 3).filter(it -> it % 2 == 0)
|
||||
.map(it -> it * 2)
|
||||
.map(it -> "item: " + it)
|
||||
listOf(1, 2, 3).filter(it -> it % 2 == 0)<# Foo<Integer> #>
|
||||
.map(it -> it * 2)<# Foo<int> #>
|
||||
.map(it -> "item: " + it)<# Foo<Object> #>
|
||||
.forEach(this::println);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user