public class Scope6 { public static void main(String[] args) { { // Start of outer scope double r; { // Start of inner scope String r; } } } }