Sign in
android
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
java
/
java-tests
/
testData
/
refactoring
/
inlineLocal
/
ResourceVariable.java.after
blob: 0ec3906510323741930d808a3ee377cc27f0561b [
file
]
class
Test
{
void
m
()
throws
Exception
{
try
(
AutoCloseable
r2
=
null
)
{
System
.
out
.
println
(
null
+
", "
+
r2
);
}
}
}