1. warning: Semantic Issue: Incompatible pointer types sending 'Class *' to parameter of type 'id'
  2.  
  3. NSMutableDictionary* dict = [NSMutableDictionary dictionary];
  4. Class k = [NSString class];
  5. [dict setObject:k forKey:@"foo"];
  6. NSLog(@"%@", dict);