Erro do Eclipse no setVisible(true);

Eu fui tentar linkar uma tela do Application Window, com outra tela, ai quando coloquei o .setVisible ele não funciona e dar erro, e quando clico pra tentar ajeitar o erro não funciona do mesmo jeito Texto pré-formatado

package aaa;

import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.BorderLayout;
import java.awt.Font;
import java.awt.Frame;
import java.awt.Window;

import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.nio.channels.NonReadableChannelException;
import java.awt.event.ActionEvent;

public class Projeto {

	private JFrame frame;

	public static void main(String[] args) {
		EventQueue.invokeLater(new Runnable() {
			public void run() {
				try {
					Projeto window = new Projeto();
					window.frame.setVisible(true);
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		});
	}

	public Projeto() {
		initialize();
	}

	private void initialize() {
		frame = new JFrame();
		frame.setBounds(100, 100, 672, 529);
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		frame.getContentPane().setLayout(null);
		
		JLabel lblTelaPrincipal = new JLabel("Tela Principal");
		lblTelaPrincipal.setFont(new Font("Tahoma", Font.PLAIN, 25));
		lblTelaPrincipal.setBounds(248, 11, 157, 49);
		frame.getContentPane().add(lblTelaPrincipal);
		
		JButton btnLink1 = new JButton("IMC");
		btnLink1.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				telaImc imc = new telaImc();
				imc.setVisible(true);
			}
		});
		btnLink1.setFont(new Font("Tahoma", Font.PLAIN, 20));
		btnLink1.setBounds(121, 140, 112, 49);
		frame.getContentPane().add(btnLink1);
		
		JButton btnLink2 = new JButton("Média");
		btnLink2.setFont(new Font("Tahoma", Font.PLAIN, 20));
		btnLink2.setBounds(399, 140, 112, 49);
		frame.getContentPane().add(btnLink2);
	}

}

Qual erro?